Make player go around in circles

  1. What do you want to achieve? How am I gonna make a player go around in circles?

  2. What is the issue? video

  3. What solutions have you tried so far? I tried using body gyro but it did not worked.

1 Like

Why not just use an Animation?

1 Like

RunService and CFrame or tween? If not animating

2 Likes

It’s RunService so I bet it uses body movers.

Well, the player is on ragdoll so.

What’s happened, I thought I already posted my reply and you even replied to it?? But I checked my “Drafts” and this was here, most than a week later?? Here it is again anyways:

The video doesn’t really show what the issue is. If you want to force the player to run around in a circle, you could use Humanoid:Move:

local TimeElapsed = 0

while true do
    Character.Humanoid:Move(Vector3.new(math.sin(TimeElapsed), 0, math.cos(TimeElapsed))
    
    TimeElapsed += task.wait()
end
2 Likes