of     1   

xXBestPieXx
#139892409Thursday, July 10, 2014 6:11 PM GMT

I want my game keep inserting parts ever .1 seconds and they spawn under the baseplate. How do I make the parts spawn to 0, 5, 0? Here is the script. Idk how to change the position. while true do part = Instance.new("Part",workspace) wait(.1) end
xXBestPieXx
#139892492Thursday, July 10, 2014 6:12 PM GMT

I made a variable, so that it could help. (idk)
xXBestPieXx
#139893054Thursday, July 10, 2014 6:16 PM GMT

B U M P B U M P
UgOsMiLy
#139896354Thursday, July 10, 2014 6:44 PM GMT

while true do part = Instance.new("Part",workspace) part.Position = Vector3.new(0,5,0) wait(.1) end

    of     1