while true do p = Instance.new("Part") p.Shape = "Ball" p.Parent = game.Workspace p.Position = Vector3.new(math.random(0,100),math.random(0,50),math.random(0,100)) p.Material = "Neon" p.Color = Color3.fromHSV(math.random(0,10)/10,1,1) wait(.1) end