Advertisement
otorp2

roblox shape

Jun 30th, 2017
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. local model = Instance.new("Model",workspace)
  2. model.Name = "Vertical Wall"
  3.  
  4. for i = 0,10,5 do
  5. local part = Instance.new("Part",workspace)
  6. part.Size = Vector3.new(i,5,5)
  7. part.Position = Vector3.new(0,0,0)
  8. part.Parent = model
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement