--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Load Wizard UI local Library = loadstring( Game:HttpGet( 'https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard' ) )() local MainWindow = Library:NewWindow('Eat Slimes to Grow HUGE') local PlayerFolder = MainWindow:NewSection('Options') local CreditsnWindow = Library:NewWindow('Credits') local CreditsnFolder = CreditsnWindow:NewSection('Scripters') local OCreditsnFolder = CreditsnWindow:NewSection('Other') CreditsnFolder:CreateButton('UILib', function() print('UILib') end) CreditsnFolder:CreateButton('SyrexhubOfficialDev', function() print('SyrexhubOfficialDev') end) OCreditsnFolder:CreateButton('UI By ...', function() print('UI By ...') end) -- New Toggle for Auto Claim Gift local autoGift = false PlayerFolder:CreateToggle('Claim Gift (+10k Size)', function(state) autoGift = state if autoGift then print('Auto Claim Gift: Enabled') task.spawn(function() while autoGift do -- Fire LogGift local args1 = { [1] = { ['TimerMilestones'] = { [1] = 1, [2] = 2, [3] = 3, [4] = 4, [5] = 5, [6] = 6, [7] = 7, [8] = 8, [9] = 9, [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, [15] = 15, [16] = 16, [17] = 17, [18] = 18, [19] = 19, [20] = 20, [21] = 21, [22] = 22, [23] = 23, [24] = 24, [25] = 25, [26] = 26, [27] = 27, [28] = 28, [29] = 29, [30] = 31, [31] = 0, }, ['Type'] = 'Leaving', ['ReceivedTime'] = tick() * 1000, -- dynamic timestamp ['TimerFinished'] = true, ['ID'] = 'db8a0918-eded-4ae2-917f-0bba92e657b8', ['Maid'] = { ['_Tasks'] = {}, ['_TaskCount'] = 7, }, ['NewRemainingTime'] = 30, }, } game:GetService('ReplicatedStorage') :WaitForChild('Honeypot', 9e9) :WaitForChild('Internal', 9e9) :WaitForChild('RemoteStorage', 9e9) :WaitForChild('LogGift - RemoteEvent', 9e9) :FireServer(unpack(args1)) -- Fire ClaimGift local args2 = { [1] = 'db8a0918-eded-4ae2-917f-0bba92e657b8', } game:GetService('ReplicatedStorage') :WaitForChild('Honeypot', 9e9) :WaitForChild('Internal', 9e9) :WaitForChild('RemoteStorage', 9e9) :WaitForChild('ClaimGift - RemoteEvent', 9e9) :FireServer(unpack(args2)) task.wait(0.1) -- repeat every 0.1 seconds end end) else print('Auto Claim Gift: Disabled') end end) -- ClaimBoost Toggle local claimBoost = false PlayerFolder:CreateToggle('Rainbow Boost', function(state) claimBoost = state if claimBoost then print('Auto Claim Rainbow Boost: Enabled') task.spawn(function() while claimBoost do local remote = game:GetService('ReplicatedStorage') :WaitForChild('Honeypot') :WaitForChild('Internal') :WaitForChild('RemoteStorage') :FindFirstChild('ClaimBoost - RemoteEvent') if remote then remote:FireServer('Rainbow', 300) end task.wait(1) -- adjust delay as needed (currently once every 1 second) end end) else print('Auto Claim Rainbow Boost: Disabled') end end) -- Black Hole Gamepass Button PlayerFolder:CreateButton('Unlock Black Hole Gamepass', function() local remote = game:GetService('ReplicatedStorage') :WaitForChild('Honeypot') :WaitForChild('Internal') :WaitForChild('RemoteStorage') :FindFirstChild('BlackHoleGamepass - RemoteEvent') if remote then remote:FireServer() print('Black Hole Gamepass fired!') else warn('⚠️ Remote not found: BlackHoleGamepass - RemoteEvent') end end) -- Magnet Gamepass Button PlayerFolder:CreateButton('Unlock Magnet Gamepass', function() local remote = game:GetService('ReplicatedStorage') :WaitForChild('Honeypot') :WaitForChild('Internal') :WaitForChild('RemoteStorage') :FindFirstChild('MagnetGamepass - RemoteEvent') if remote then remote:FireServer() print('Magnet Gamepass fired!') else warn('⚠️ Remote not found: BlackHoleGamepass - RemoteEvent') end end)