Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- GameName = "FREE UGC CLICKER"
- tab1name = "Main"
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
- local GameName = Library:NewWindow(GameName)
- local Tab1 = GameName:NewSection(tab1name)
- local function autoClick()
- while task.wait() do
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Click"):FireServer()
- end
- end
- local autoClickActive = false
- Tab1:CreateToggle("Auto Clicker", function(value)
- autoClickActive = value
- if autoClickActive then
- autoClick()
- end
- end)
- local function autoClaimRewards()
- for i = 1, 5 do
- local args = {
- [1] = i
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("ClaimPlaytimeReward"):FireServer(unpack(args))
- end
- end
- local autoClaimActive = false
- Tab1:CreateToggle("Auto Claim Rewards", function(value)
- autoClaimActive = value
- while autoClaimActive do
- autoClaimRewards()
- wait(1) -- Customize the delay as needed
- end
- end)
- local Tab2 = GameName:NewSection("Buy Eggs")
- local function buyEgg(eggType)
- local args = {[1] = eggType}
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
- end
- local commonActive = false
- Tab2:CreateToggle("Common (1k clicks)", function(value)
- commonActive = value
- if commonActive then
- buyEgg("Common")
- end
- end)
- --... and so on for the other egg types...
- local Tab3 = GameName:NewSection("Credit here")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement