local Player = game.Players.LocalPlayer local Gui = Instance.new("ScreenGui") Gui.Name = "TheMoneyGUI" Gui.ResetOnSpawn = false Gui.Parent = Player:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Name = "MainFrame" Frame.Size = UDim2.new(0, 200, 0, 90) Frame.Position = UDim2.new(0.15, 0, 0.2, 0) Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Frame.Active = true Frame.Draggable = true Frame.Parent = Gui local Button = Instance.new("TextButton") Button.Size = UDim2.new(1, -20, 1, -20) Button.Position = UDim2.new(0, 10, 0, 10) Button.BackgroundColor3 = Color3.fromRGB(60, 60, 60) Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Text = "Auto Money: OFF" Button.TextScaled = true Button.Parent = Frame local running = false local function ShowPopup() local popup = Instance.new("TextLabel") popup.Size = UDim2.new(0, 300, 0, 60) popup.Position = UDim2.new(0.5, -150, 0.1, 0) popup.BackgroundColor3 = Color3.fromRGB(30, 30, 30) popup.TextColor3 = Color3.fromRGB(255, 255, 0) popup.TextScaled = true popup.Text = "Made by ScriptDude999" popup.Parent = Gui popup.BackgroundTransparency = 1 popup.TextTransparency = 1 for t = 1, 0, -0.1 do popup.BackgroundTransparency = t popup.TextTransparency = t task.wait(0.03) end task.wait(1.5) for t = 0, 1, 0.1 do popup.BackgroundTransparency = t popup.TextTransparency = t task.wait(0.03) end popup:Destroy() end Button.MouseButton1Click:Connect(function() running = not running Button.Text = running and "Auto Money: ON" or "Auto Money: OFF" if running then ShowPopup() end while running do local args = {5} -- you can change 5 IF the server supports it game:GetService("ReplicatedStorage"):WaitForChild("Playtime"):FireServer(unpack(args)) task.wait() -- FASTEST SPAM POSSIBLE SAFELY end end)