Advertisement
Jacob-RobloxScripts

adsdas

Nov 6th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. local removeNametags = false -- remove custom billboardgui nametags from hrp, could trigger anticheat
  2.  
  3. local plr = game:GetService("Players").LocalPlayer
  4. local character = plr.Character
  5. local hrp = character.HumanoidRootPart
  6. local old = hrp.CFrame
  7.  
  8. if not character:FindFirstChild("Humanoid") or character.PrimaryPart ~= hrp then
  9. return print("you a skid")
  10. end
  11.  
  12. if removeNametags then
  13. local tag = hrp:FindFirstChildOfClass("BillboardGui")
  14. if tag then tag:Destroy() end
  15.  
  16. hrp.ChildAdded:Connect(function(item)
  17. if item:IsA("BillboardGui") then
  18. task.wait()
  19. item:Destroy()
  20. end
  21. end)
  22. end
  23.  
  24.  
  25. local newroot = character.Humanoid:Clone()
  26. hrp.Parent = workspace
  27. character.PrimaryPart = hrp
  28. character:MoveTo(Vector3.new(old.X,9e9,old.Z))
  29. hrp.Parent = character
  30. task.wait(0.5)
  31. newroot.Parent = hrp
  32. hrp.CFrame = old
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement