local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "SandMan's Clean the WORLD! [SEA] Hub", LoadingTitle = "SandMan's Hub", LoadingSubtitle = "by SandMan", ConfigurationSaving = { Enabled = true, FolderName = "SandManHubs", FileName = "CurrentGame" }, }) local MainTab = Window:CreateTab("🏠 Main", nil) -- ==================== COLLECTING ==================== local CollectSection = MainTab:CreateSection("Collecting") -- Auto Collect Paper local AutoCollectPaperEnabled = false MainTab:CreateToggle({ Name = "Auto Collect Paper", CurrentValue = false, Flag = "AutoCollectPaper", Callback = function(Value) AutoCollectPaperEnabled = Value if Value then task.spawn(function() while AutoCollectPaperEnabled do pcall(function() game:GetService("ReplicatedStorage").Remotes.CollectPaper:FireServer() end) task.wait(0) end end) end end, }) -- Auto Collect Rat local AutoCollectRatEnabled = false MainTab:CreateToggle({ Name = "Auto Collect Rat", CurrentValue = false, Flag = "AutoCollectRat", Callback = function(Value) AutoCollectRatEnabled = Value if Value then task.spawn(function() while AutoCollectRatEnabled do pcall(function() game:GetService("ReplicatedStorage").Remotes.CollectPaper:FireServer("Rat") end) task.wait(0) end end) end end, }) -- Auto Collect Diamond Poop local AutoCollectDiamondPoopEnabled = false MainTab:CreateToggle({ Name = "Auto Collect Diamond Poop", CurrentValue = false, Flag = "AutoCollectDiamondPoop", Callback = function(Value) AutoCollectDiamondPoopEnabled = Value if Value then task.spawn(function() while AutoCollectDiamondPoopEnabled do pcall(function() game:GetService("ReplicatedStorage").Remotes.CollectPaper:FireServer("DiamondPoop") end) task.wait(0) end end) end end, }) -- ==================== MONEY ==================== local MoneySection = MainTab:CreateSection("Money") local InfMoneyAndGumEnabled = false MainTab:CreateToggle({ Name = "Inf Money and Gum", CurrentValue = false, Flag = "InfMoneyAndGum", Callback = function(Value) InfMoneyAndGumEnabled = Value if Value then task.spawn(function() while InfMoneyAndGumEnabled do pcall(function() game:GetService("ReplicatedStorage").Remotes.CollectTrashBag:FireServer(math.huge, 962944000000000000000) end) task.wait(0) end end) end end, }) Rayfield:Notify({ Title = "SandMan's Hub", Content = "Script fixed and loaded!", Duration = 5, })