Advertisement
PlayStationUser99

How to make a client object spinner in roblox! LocalScript

Jul 28th, 2021
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. for i, part in pairs(game.Lighting:GetChildren()) do
  2. if part.Name == "Spinner" then
  3. part.Parent = game.Workspace
  4. while wait() do
  5. part.Orientation += Vector3.new(0, part.VelocityValue.Value, 0)
  6. end
  7. end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement