Advertisement
giorgichaduneli

Untitled

Feb 15th, 2024 (edited)
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. local KeyLibrary = KeyLibrary or loadstring(game:HttpGet('https://raw.githubusercontent.com/MaGiXxScripter0/keysystemv2api/master/setup_obf.lua'))()
  2. local KeySystem = KeyLibrary.new('CodeX')
  3. local Key = _G.key or nil
  4. if Key==nil or Key=="" then
  5. return game.Players.LocalPlayer:Kick("InvalidHwid.")
  6. elseif not KeySystem:verifyPremiumKey(Key) then
  7. return game.Players.LocalPlayer:Kick("Invalid Hwid.")
  8. end
  9.  
  10. local DrRayLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/AZYsGithub/DrRay-UI-Library/main/DrRay.lua"))()
  11.  
  12. local window = DrRayLibrary:Load("CodeX Paid", "Default")
  13.  
  14. local tab = DrRayLibrary.newTab("Main", "ImageIdHere")
  15.  
  16. tab.newToggle("Auto Parry", "Automatically deflects The Ball", false, function(toggleState)
  17. if toggleState then
  18. loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/bladeball/main/autoparry"))()
  19. else
  20. print("Off")
  21. end
  22. end)
  23.  
  24. tab.newToggle("Auto Spam", "Automatically Clashes", false, function(toggleState)
  25. if toggleState then
  26. loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/bladeball/main/blade"))()
  27. else
  28. print("Off")
  29. end
  30. end)
  31.  
  32.  
  33. tab.newToggle("Auto Detect Spam V3", "Automatically Clashes", false, function(toggleState)
  34. if toggleState then
  35. loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/bladeball/main/autoDetectSpamv3"))()
  36. else
  37. print("Off")
  38. end
  39. end)
  40.  
  41. tab.newToggle("Spam Button", "Manual Spam", false, function(toggleState)
  42. if toggleState then
  43. loadstring(game:HttpGet("https://raw.githubusercontent.com/bosterdrone/bladeball/main/spambutton"))()
  44. else
  45. print("Off")
  46. end
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement