AceKiron
(Ace)
January 27, 2021, 10:14am
#1
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
AceKiron
(Ace)
January 27, 2021, 10:32am
#3
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
AceKiron
(Ace)
January 27, 2021, 10:36am
#5
That’d still have collision, right? I don’t want that.
17alwin17
(17alwin17)
January 27, 2021, 10:55am
#6
Haha I accidentally deleted my post, but yeah, CFrame is the solution
1 Like