I was following a tutorial that explained Instance.new and at the end of this tutorial it explained how to make some "rain" with the instance. I followed the instructions but nothing happens other than one block spawning
Here is the code I used
while true do
wait()
local Rain = Instance.new ("Part", game.Workspace)
Rain.Position = Vector3.new(0,15,0)
Rain.Transcparency = 0.3
Rain.Size = Vector3.new(0.5,2,0.5)
end