Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function createwall()
- for i = 1, 100, 10 do
- for j = 1, 100, 10 do
- local n = Instance.new("Part")
- n.Parent = workspace
- n.Position = Vector3.new(i, j, 0)
- n.Anchored = true
- local q = Instance.new("Part")
- q.Parent = workspace
- q.Position = Vector3.new(0,j,i)
- q.Anchored = true
- print(n.Position,q.Position)
- wait()
- end
- end
- end
- createwall()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement