Advertisement
immbr05

test1

Jun 13th, 2024 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. GameName = "FREE UGC CLICKER"
  2.  
  3. tab1name = "Main"
  4.  
  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  6.  
  7. local GameName = Library:NewWindow(GameName)
  8.  
  9. local Tab1 = GameName:NewSection(tab1name)
  10.  
  11. local function autoClick()
  12. while task.wait() do
  13. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Click"):FireServer()
  14. end
  15. end
  16.  
  17. local autoClickActive = false
  18.  
  19. Tab1:CreateToggle("Auto Clicker", function(value)
  20. autoClickActive = value
  21. if autoClickActive then
  22. autoClick()
  23. end
  24. end)
  25.  
  26. local function autoClaimRewards()
  27. for i = 1, 5 do
  28. local args = {
  29. [1] = i
  30. }
  31. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClaimPlaytimeReward"):FireServer(unpack(args))
  32. end
  33. end
  34.  
  35. local autoClaimActive = false
  36.  
  37. Tab1:CreateToggle("Auto Claim Rewards", function(value)
  38. autoClaimActive = value
  39. while autoClaimActive do
  40. autoClaimRewards()
  41. wait(1) -- Customize the delay as needed
  42. end
  43. end)
  44.  
  45. local Tab2 = GameName:NewSection("Buy Eggs")
  46.  
  47. local function buyEgg(eggType)
  48. local args = {[1] = eggType}
  49. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
  50. end
  51.  
  52. local commonActive = false
  53.  
  54. Tab2:CreateToggle("Common (1k clicks)", function(value)
  55. commonActive = value
  56. if commonActive then
  57. buyEgg("Common")
  58. end
  59. end)
  60.  
  61. --... and so on for the other egg types...
  62.  
  63. local Tab3 = GameName:NewSection("Credit here")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement