Advertisement
totallynotcopied

Untitled

Nov 11th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. --------- Anti TP Bypass---------
  2. local mt = getrawmetatable(game)
  3. setreadonly(mt, false)
  4. local old = mt.__index
  5. mt.__index = function(a, b)
  6. if b:lower() == "position" then
  7. return Vector3.new(0, 0, 0)
  8. end
  9. return old(a, b)
  10. end
  11. ---------------------------------
  12.  
  13. local plrchar = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart
  14. local cd
  15. for _,v in pairs (game:GetService("Workspace").Chests:GetChildren()) do
  16. if v.Name == "Chest" then
  17. plrchar.CFrame = v.CFrame
  18. wait(0.5)
  19. cd = v.ClickDetector
  20. fireclickdetector(cd)
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement