Gigantic particles dissapear when out of screen

Just change other side code to

local Image = script.Parent

while true do
   Image.Rotation -= 1
   if Image.Rotation <= -360 then
      Image.Rotation = 0
   end
   task.wait()
end
1 Like