Rotating Script
This script allows you to easily create a rotating effect for objects in your game, such as coins, power-ups, or decorative elements.

local coin = script.Parent
local function rotate ()
while true do
coin.Orientation = coin.Orientation + Vector3.new(0, 3, 0)
wait()
end
end
rotate()