Thread Rating:
  • 6 Vote(s) - 4.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
We have a severe lack of good games. So...
#6
Try an Algebraic tool then. Something like

[lua]
for x = 1, 50 do
for y = 1, 50 do
if x^2 == (y^2 * 0.5) then
wait() --Prevents too much lag
local part = create("Box")
part.Fixed = true
part.Collidable = false
part.CharacterCollide = false
part.Size = Vec2D(5, 5)
part.Position = Vec2D(x, y)
part.Color = Color(0.5, 0.3, 0)
part.Parent = game.World
end end end
[/lua]
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)