local can = false local uid = game:GetService("UserInputService") local ui = Instance.new("ScreenGui") ui.Parent = game.Players.LocalPlayer.PlayerGui ui.IgnoreGuiInset = true ui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Parent = ui frame.Position = UDim2.fromScale(0.5,0.5) frame.Size = UDim2.fromOffset(200,150) frame.AnchorPoint = Vector2.new(0.5,0.5) local button = Instance.new("TextButton") button.Parent = frame button.AnchorPoint = Vector2.new(0.5,0.5) button.Position = UDim2.fromScale(0.5,0.8) button.Size = UDim2.fromOffset(170,50) button.BackgroundColor3 = Color3.fromHSV(0.3,0.5,1) button.Text = "Click to Spam!" local textframe = Instance.new("TextBox") textframe.Size = UDim2.fromOffset(170,70) textframe.AnchorPoint = Vector2.new(0.5,0.5) textframe.Position = UDim2.fromScale(0.5,0.325) textframe.BackgroundColor3 = Color3.fromHSV(1,0,1) textframe.Parent = frame textframe.PlaceholderText = "F10 To HIDE" textframe.Text = "(www.roblox.com)REMOVE.REPORT.DESTROY.PREDS.AND.BRAINROT!!! AND.GET.A.LIFE!!! FREE.SCHLEP!" textframe.ClearTextOnFocus = false local drag = Instance.new("UIDragDetector") drag.Parent = frame local taske = task.spawn(function() while true do if can and not (textframe.Text == "") then game.ReplicatedStorage.Remotes.Fire:Fire(textframe.Text) else can = false button.Text = "Click to Spam!" end task.wait() end end) uid.InputBegan:Connect(function() if uid:IsKeyDown(Enum.KeyCode.F10) then if ui.Enabled then ui.Enabled = false else frame.Position = UDim2.fromScale(0.5,0.5) ui.Enabled = true end end end) button.Activated:Connect(function() if can then can = false button.Text = "Click to Spam!" else can = true if textframe.Text ~= "" then button.Text = "Spamming" else button.Text = "put some text..." end end end)