draxe55

sword fight pack

May 13th, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. Anticheat Bypass;
  2.  
  3. getgenv().BypassSettings = {
  4. ["Crystal AntiCheat"] = true,
  5. ["Adonis"] = true,
  6.  
  7. ["Anti-Obfuscated Scripts"] = true,-- CANNOT BE ENABLED WITH CRYSTAL This will block any obfuscated script on the client from running (Not executed by your exploit thought)
  8. ["Random"] = true, -- Will disallow scripts calling, GetPropertyChanged signal on WalkSpeed, JumpPower, Gravity, Health, LogService
  9.  
  10. ["Enable Kill Logs"] = true, -- Say if you want to get told what's bypassed
  11. }
  12.  
  13. loadstring(game:HttpGet("https://irisapp.ca/TheGoodSucc/iAntiCheat.lua"))()
  14.  
  15. Inf Yield;
  16. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  17.  
  18. Tp Tool;
  19.  
  20. mouse = game.Players.LocalPlayer:GetMouse()
  21. tool = Instance.new("Tool")
  22. tool.RequiresHandle = false
  23. tool.Name = "Equip to Click TP"
  24. tool.Activated:connect(function()
  25. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  26. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  27. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  28. end)
  29. tool.Parent = game.Players.LocalPlayer.Backpack
Advertisement
Add Comment
Please, Sign In to add comment