local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local existingGui = playerGui:FindFirstChild("MoneySpinGui") if existingGui then existingGui:Destroy() end local gui = Instance.new("ScreenGui") gui.Name = "MoneySpinGui" gui.ResetOnSpawn = false gui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 350, 0, 160) frame.Position = UDim2.new(1, -360, 0, 10) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui local discordLabel = Instance.new("TextLabel") discordLabel.Size = UDim2.new(0, 150, 0, 20) discordLabel.Position = UDim2.new(0, 5, 0, 5) discordLabel.BackgroundTransparency = 1 discordLabel.TextColor3 = Color3.fromRGB(140, 140, 255) discordLabel.Font = Enum.Font.SourceSansBold discordLabel.TextSize = 16 discordLabel.TextXAlignment = Enum.TextXAlignment.Left discordLabel.Text = "1w69" discordLabel.Parent = frame local warningLabel = Instance.new("TextLabel") warningLabel.Size = UDim2.new(0, 180, 0, 20) warningLabel.Position = UDim2.new(0.5, -90, 0, 5) warningLabel.BackgroundTransparency = 1 warningLabel.TextColor3 = Color3.fromRGB(255, 80, 80) warningLabel.Font = Enum.Font.SourceSansBold warningLabel.TextSize = 14 warningLabel.TextWrapped = true warningLabel.Text = "Putting money may kick you rejoin" warningLabel.Parent = frame local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 30, 0, 30) closeBtn.Position = UDim2.new(1, -35, 0, 5) closeBtn.BackgroundColor3 = Color3.fromRGB(170, 0, 0) closeBtn.Text = "X" closeBtn.TextColor3 = Color3.new(1,1,1) closeBtn.Font = Enum.Font.SourceSansBold closeBtn.TextSize = 22 closeBtn.Parent = frame closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) local addMoneyBtn = Instance.new("TextButton") addMoneyBtn.Size = UDim2.new(0, 330, 0, 40) addMoneyBtn.Position = UDim2.new(0, 10, 0, 40) addMoneyBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) addMoneyBtn.TextColor3 = Color3.new(1,1,1) addMoneyBtn.Font = Enum.Font.SourceSansBold addMoneyBtn.TextSize = 20 addMoneyBtn.Text = "inf Money" addMoneyBtn.Parent = frame addMoneyBtn.MouseButton1Click:Connect(function() for _, obj in ipairs(ReplicatedStorage:GetDescendants()) do if obj:IsA("RemoteEvent") then pcall(function() obj:FireServer(9999999999999) end) end end end) local infSpinBtn = Instance.new("TextButton") infSpinBtn.Size = UDim2.new(0, 330, 0, 40) infSpinBtn.Position = UDim2.new(0, 10, 0, 90) infSpinBtn.BackgroundColor3 = Color3.fromRGB(0, 100, 200) infSpinBtn.TextColor3 = Color3.new(1,1,1) infSpinBtn.Font = Enum.Font.SourceSansBold infSpinBtn.TextSize = 20 infSpinBtn.Text = "Infinite Spin" infSpinBtn.Parent = frame infSpinBtn.MouseButton1Click:Connect(function() local remote = ReplicatedStorage:FindFirstChild("Honeypot", true) if remote then local award = remote:FindFirstChild("Internal", true) if award then local storage = award:FindFirstChild("RemoteStorage", true) if storage then local event = storage:FindFirstChild("AwardSpinCash") if event and event:IsA("RemoteEvent") then pcall(function() event:FireServer(1000000) end) end end end end end)