PapierLP

Key Champions

Aug 21st, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))()
  2.  
  3. local AutoTab = Library:CreateTab("Key Champions","Mikes Geheime Cheat Sachen", true)
  4. AutoTab:CreateToggle("TP to Spawn ", function(arg) --the (arg) is if the checkbox is toggled or not
  5. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(5880, 1909, 6183)
  6. end)
  7. local AutoTab = Library:CreateTab("Auto Misc","Mikes Geheime Cheat Sachen", true)
  8. AutoTab:CreateToggle("Auto Buy Key", function(arg) --the (arg) is if the checkbox is toggled or not
  9. if arg then
  10. _G.Basic = true
  11. while wait(0) and _G.Basic do
  12. game:GetService("ReplicatedStorage").Key:FireServer()
  13.  
  14.  
  15. end
  16. else
  17. _G.Basic = false
  18. end
  19. end)
  20. AutoTab:CreateToggle("Auto Buy BackPacks", function(arg) --the (arg) is if the checkbox is toggled or not
  21. if arg then
  22. _G.Basic = true
  23. while wait(0) and _G.Basic do
  24. game:GetService("ReplicatedStorage").Backpack:FireServer()
  25.  
  26.  
  27. end
  28. else
  29. _G.Basic = false
  30. end
  31. end)
  32. AutoTab:CreateToggle("Auto Rebirth", function(arg) --the (arg) is if the checkbox is toggled or not
  33. if arg then
  34. _G.Basic = true
  35. while wait(0) and _G.Basic do
  36. game:GetService("ReplicatedStorage").Rebirths:FireServer()
  37.  
  38. end
  39. else
  40. _G.Basic = false
  41. end
  42. end)
  43. AutoTab:CreateToggle("Auto Sell x250", function(arg) --the (arg) is if the checkbox is toggled or not
  44. if arg then
  45. _G.Basic = true
  46. while wait(0) and _G.Basic do
  47. local args = {
  48. [1] = 10
  49. }
  50.  
  51. game:GetService("ReplicatedStorage").Sell:FireServer(unpack(args))
  52.  
  53. end
  54. else
  55. _G.Basic = false
  56. end
  57. end)
  58. local AutoTab = Library:CreateTab("Auto Egg Open","Mikes Geheime Cheat Sachen", true)
  59. AutoTab:CreateToggle("Auto Forest Egg", function(arg) --the (arg) is if the checkbox is toggled or not
  60. if arg then
  61. _G.Basic = true
  62. while wait(0) and _G.Basic do
  63. local args = {
  64. [1] = "Forest Egg"
  65. }
  66.  
  67. game:GetService("ReplicatedStorage").Egg:FireServer(unpack(args))
  68.  
  69.  
  70. end
  71. else
  72. _G.Basic = false
  73. end
  74. end)
Add Comment
Please, Sign In to add comment