PapierLP

Speed Run Simulator

Aug 11th, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 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("Auto Misc","Mikes Geheime Cheat Sachen", true)
  4.  
  5. AutoTab:CreateToggle("Click", function(arg) --the (arg) is if the checkbox is toggled or not
  6. if arg then
  7. _G.Basic = true
  8. while wait(0) and _G.Basic do
  9. game:GetService("ReplicatedStorage").Remotes.AddSpeed:FireServer()
  10. end
  11. else
  12. _G.Basic = false
  13. end
  14. end)
  15. AutoTab:CreateToggle("Auto Rebirth", function(arg) --the (arg) is if the checkbox is toggled or not
  16. if arg then
  17. _G.Basic = true
  18. while wait(0) and _G.Basic do
  19. game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer()
  20. end
  21. else
  22. _G.Basic = false
  23. end
  24. end)
Add Comment
Please, Sign In to add comment