Im trying to make a merry-go-round as a complete beginner I need help to make the cylinder part actually spin the player with it.
I don’t know if this helps but, I also looked at this Jailbreak train platform system? - #16 by NWSpacek
The script I used for it to spin
local p = game.Workspace.Spin
local cf = CFrame.Angles(math.rad(10), 0, 0)
while true do
wait(.01)
p.CFrame = p.CFrame * cf
end```