Advertisement
otorp2

roblox instancing with models changing names

Jun 30th, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 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.Position = Vector3.new(0,i,0)
  7. part.Parent = model
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement