lenyyyyyyyyy

Untitled

Jul 3rd, 2020
4,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/preztel/AzureLibrary/master/uilib.lua", true))()
  2. local AimbotTab = Library:CreateTab("Auto Coins", "yup", true)
  3.  
  4. AimbotTab:CreateToggle("Auto Coins", function(arg) --the (arg) is if the checkbox is toggled or not
  5. if arg then
  6. _G.toggled = true
  7. while _G.toggled == true do
  8. wait(0)
  9. local Event = game:GetService("ReplicatedStorage").CoinSystem
  10. Event:FireServer()
  11. end
  12. else
  13. _G.toggled = false
  14. while _G.toggled == true do
  15. wait(0)
  16. local Event = game:GetService("ReplicatedStorage").CoinSystem
  17. Event:FireServer()
  18. end
  19. end
  20. end)
  21. local AimbotTab1 = Library:CreateTab("Auto Sell", "yup", true)
  22.  
  23. AimbotTab1:CreateToggle("Auto Sell", function(arg) --the (arg) is if the checkbox is toggled or not
  24. if arg then
  25. _G.toggled = true
  26. while _G.toggled == true do
  27. wait(0)
  28. local Event = game:GetService("ReplicatedStorage").Sell
  29. Event:FireServer()
  30. end
  31. else
  32. _G.toggled = true
  33. while _G.toggled == true do
  34. wait(0)
  35. local Event = game:GetService("ReplicatedStorage").Sell
  36. Event:FireServer()
  37. end
  38. end
  39. end)
Add Comment
Please, Sign In to add comment