1. local removeNametags = false -- remove custom billboardgui nametags from hrp, could trigger anticheat
  2. local plr = game:GetService("Players").LocalPlayer
  3. local character = plr.Character
  4. local hrp = character.HumanoidRootPart
  5. local old = hrp.CFrame
  6. if not character:FindFirstChild("LowerTorso") or character.PrimaryPart ~= hrp then
  7. return print("unsupported")
  8. end
  9. if removeNametags then
  10. local tag = hrp:FindFirstChildOfClass("BillboardGui")
  11. if tag then tag:Destroy() end
  12. hrp.ChildAdded:Connect(function(item)
  13. if item:IsA("BillboardGui") then
  14. task.wait()
  15. item:Destroy()
  16. end
  17. end)
  18. end
  19. local newroot = character.LowerTorso.Root:Clone()
  20. hrp.Parent = workspace
  21. character.PrimaryPart = hrp
  22. character:MoveTo(Vector3.new(old.X,9e9,old.Z))
  23. hrp.Parent = character
  24. task.wait(0.5)
  25. newroot.Parent = hrp
  26. hrp.CFrame = old