How to fix this bug?

I was working on my Anti-Cheat when I found out this bug existed.
I’d like the rest of my character to move to my HumanoidRootPart when I move that I don’t know how to describe this bug any better, so here is a screenshot:

The only line of code required to reproduce this bug seems to be this line (of course, instead of AceKiron it should be your username.)

game.Workspace.AceKiron.HumanoidRootPart.Position += Vector3.new(-100, 0, 0)
1 Like

Thanks, this actually worked. If people have the same issue I had and want the solution: It’s using

game.Workspace.AceKiron.HumanoidRootPart.CFrame += Vector3.new(-100, 0, 0)

instead of

game.Workspace.AceKiron.HumanoidRootPart.Position += Vector3.new(-100, 0, 0)
1 Like

That’d still have collision, right? I don’t want that.

Haha I accidentally deleted my post, but yeah, CFrame is the solution :slight_smile:

1 Like