of     1   

seanjohn5
#180568303Tuesday, December 29, 2015 3:16 AM GMT

So, im making a "thing" where tiny neon bricks are falling. But I cant script. So I need help making a script that clones these neon blocks and unanchors them every 0.5 seconds. Thank You
seanjohn5
#180610661Tuesday, December 29, 2015 7:53 PM GMT

50 Robux for Script.
TESTsubject0100
#180611738Tuesday, December 29, 2015 8:08 PM GMT

Just do Instance.new... and put that script in a while true do loop... http://wiki.roblox.com/index.php?title=Instantiation_of_a_part
Predicamental
#180612658Tuesday, December 29, 2015 8:22 PM GMT

lmao while true do Instance.new ("Part",Workspace) Part.Material = "Neon" Part.Position = math.random (1,10) wait (.5) end
seanjohn5
#180778765Thursday, December 31, 2015 10:53 PM GMT

More like a script ready to insert...
LicePro
#180780210Thursday, December 31, 2015 11:11 PM GMT

while true do Instance.new ("Part",Workspace) Part.Material = "Neon" Part.Position = Vector3.new(math.random(1,100)),Vector3.new(math.random(1,100)),Vector3.new(math.random(1,100)), wait (.5) end

    of     1