Advertisement
Vzurxy

bypassed anti cheat roblox

May 11th, 2019
10,241
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 1
  1. -- trash anti cheat
  2. -- bypasser 2019
  3. -- amazing anti cheat hhAha
  4.  
  5. local plr = game:GetService("Players").LocalPlayer
  6.  
  7. if not getgenv().MTAPIMutex then loadstring(game:HttpGet("https://pastebin.com/raw/1NcuWJa9", true))() end
  8.  
  9. -- ^ load metatable lib
  10.  
  11. plr:AddCallHook("Kick", function(...) end)
  12.  
  13. -- ^ anti-kick
  14.  
  15. plr.Character:FindFirstChild("HumanoidRootPart"):AddPropertyEmulator("Position")
  16.  
  17. -- ^ bypassed anti tp
  18.  
  19. local clientChar = game:GetService("Players").LocalPlayer.Character;
  20. local human = clientChar:FindFirstChildOfClass("Humanoid")
  21. local torso = clientChar:FindFirstChild("Torso") or clientChar:FindFirstChild("UpperTorso")
  22. local root = clientChar:FindFirstChild("HumanoidRootPart")
  23.  
  24. local signals = {
  25. plr.Backpack.ChildAdded;
  26. root:GetPropertyChangedSignal("CFrame");
  27. root:GetPropertyChangedSignal("Position");
  28. root:GetPropertyChangedSignal("Velocity");
  29. root.ChildAdded;
  30. root.DescendantAdded;
  31. torso:GetPropertyChangedSignal("Velocity");
  32. torso:GetPropertyChangedSignal("CFrame");
  33. torso:GetPropertyChangedSignal("Position");
  34. torso.ChildAdded;
  35. torso.DescendantAdded;
  36. human:GetPropertyChangedSignal("WalkSpeed");
  37. human:GetPropertyChangedSignal("JumpPower");
  38. human:GetPropertyChangedSignal("HipHeight");
  39. }
  40.  
  41. -- destroy connections ^
  42.  
  43. for i, signal in next, signals do
  44. pcall(function()
  45. for i, connection in next, getconnections(signal) do
  46. if not checkcaller() then
  47. connection:Disable()
  48. end
  49. end
  50. end)
  51. end
  52.  
  53. -- use custom getconnections exploit functions ^
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement