immbr05

test3

Jun 13th, 2024
7
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. print("Script loaded!")
  2. GameName = "FREE UGC CLICKER"
  3.  
  4. tab1name = "Main"
  5.  
  6. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  7.  
  8. local GameName = Library:NewWindow(GameName)
  9.  
  10. local Tab1 = GameName:NewSection(tab1name)
  11.  
  12. local function autoClick()
  13. while task.wait() do
  14. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Click"):FireServer()
  15. end
  16. end
  17.  
  18. local autoClickActive = false
  19.  
  20. Tab1:CreateToggle("Auto Clicker", function(value)
  21. autoClickActive = value
  22. if autoClickActive then
  23. autoClick()
  24. end
  25. end)
  26.  
  27. local function autoClaimRewards()
  28. for i = 1, 5 do
  29. local args = {
  30. [1] = i
  31. }
  32. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClaimPlaytimeReward"):FireServer(unpack(args))
  33. end
  34. end
  35.  
  36. local autoClaimActive = false
  37.  
  38. Tab1:CreateToggle("Auto Claim Rewards", function(value)
  39. autoClaimActive = value
  40. while autoClaimActive do
  41. autoClaimRewards()
  42. wait(1) -- Customize the delay as needed
  43. end
  44. end)
  45.  
  46. local Tab2 = GameName:NewSection("Buy Eggs")
  47.  
  48. local function buyEgg(eggType)
  49. local args = {[1] = eggType}
  50. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
  51. end
  52.  
  53. local common_toggle = Tab2:CreateToggle("Common (1k clicks)", function(value)
  54. if value then
  55. buyEgg("Common")
  56. end
  57. end)
  58.  
  59. common_toggle.Changed:Connect(function()
  60. if common_toggle.Value then
  61. local args = {[1] = "Common"}
  62. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
  63. end
  64. end)
  65.  
  66. local uncommon_toggle = Tab2:CreateToggle("Uncommon (5k clicks)", function(value)
  67. if value then
  68. buyEgg("Uncommon")
  69. end
  70. end)
  71.  
  72. uncommon_toggle.Changed:Connect(function()
  73. if uncommon_toggle.Value then
  74. local args = {[1] = "Uncommon"}
  75. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
  76. end
  77. end)
  78.  
  79. local limited_toggle = Tab2:CreateToggle("Limited (10k clicks)", function(value)
  80. if value thenbuyEgg("Limited")
  81. end
  82. end)
  83.  
  84. limited_toggle.Changed:Connect(function()
  85. if limited_toggle.Value then
  86. local args = {[1] = "Limited"}
  87. game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
  88. end
  89. end)
  90.  
  91. local Tab3 = GameName:NewSection("Credit here")
  92.  
  93. local credits_tab = Instance.new("Page")
  94. credits_tab.Name = "Credits"
  95. credits_tab.Parent = script.Parent
  96.  
  97. local immbr05_toggle = Instance.new("Toggle")
  98. immbr05_toggle.Name = "immbr05"
  99. immbr05_toggle.Parent = credits_tab
  100. immbr05_toggle.Text = "immbr05"
Add Comment
Please, Sign In to add comment