local player = game.Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") ScreenGui.Parent = player:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false local button = Instance.new("TextButton") button.Parent = ScreenGui button.Size = UDim2.fromScale(0.25, 0.1) button.Position = UDim2.fromScale(0.375, 0.45) button.Text = "Dupe Boo's" button.BackgroundColor3 = Color3.fromRGB(40, 40, 40) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextScaled = true button.Active = true button.Draggable = true getgenv().farm = false local running = false button.MouseButton1Click:Connect(function() if running then getgenv().farm = false running = false button.Text = "Dupe Boo's" else getgenv().farm = true running = true button.Text = "Dupe Boo's [ON]" task.spawn(function() while getgenv().farm do task.wait() local args = { "Boo" } game:GetService("ReplicatedStorage") :WaitForChild("RemoteEvents") :WaitForChild("BuyItemCash") :FireServer(unpack(args)) end end) end end)