Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Script loaded!")
- 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 common_toggle = Tab2:CreateToggle("Common (1k clicks)", function(value)
- if value then
- buyEgg("Common")
- end
- end)
- common_toggle.Changed:Connect(function()
- if common_toggle.Value then
- local args = {[1] = "Common"}
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
- end
- end)
- local uncommon_toggle = Tab2:CreateToggle("Uncommon (5k clicks)", function(value)
- if value then
- buyEgg("Uncommon")
- end
- end)
- uncommon_toggle.Changed:Connect(function()
- if uncommon_toggle.Value then
- local args = {[1] = "Uncommon"}
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
- end
- end)
- local limited_toggle = Tab2:CreateToggle("Limited (10k clicks)", function(value)
- if value thenbuyEgg("Limited")
- end
- end)
- limited_toggle.Changed:Connect(function()
- if limited_toggle.Value then
- local args = {[1] = "Limited"}
- game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("BuyEgg"):FireServer(unpack(args))
- end
- end)
- local Tab3 = GameName:NewSection("Credit here")
- local credits_tab = Instance.new("Page")
- credits_tab.Name = "Credits"
- credits_tab.Parent = script.Parent
- local immbr05_toggle = Instance.new("Toggle")
- immbr05_toggle.Name = "immbr05"
- immbr05_toggle.Parent = credits_tab
- immbr05_toggle.Text = "immbr05"
Add Comment
Please, Sign In to add comment