local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local cloes = Instance.new("TextButton") local UICorner = Instance.new("UICorner") local UICorner_2 = Instance.new("UICorner") local TextBox = Instance.new("TextBox") local UICorner_3 = Instance.new("UICorner") local TextButton = Instance.new("TextButton") local UICorner_4 = Instance.new("UICorner") --Properties: ScreenGui.Parent = game.CoreGui ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(117, 76, 76) Frame.BackgroundTransparency = 0.200 Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.178571433, 0, 0.685929656, 0) Frame.Size = UDim2.new(0, 224, 0, 123) cloes.Name = "cloes" cloes.Parent = Frame cloes.BackgroundColor3 = Color3.fromRGB(255, 116, 47) cloes.BackgroundTransparency = 0.700 cloes.BorderColor3 = Color3.fromRGB(0, 0, 0) cloes.BorderSizePixel = 0 cloes.Size = UDim2.new(0, 31, 0, 25) cloes.Font = Enum.Font.SourceSansBold cloes.Text = "X" cloes.TextColor3 = Color3.fromRGB(0, 0, 0) cloes.TextScaled = true cloes.TextSize = 14.000 cloes.TextTransparency = 0.400 cloes.TextWrapped = true UICorner.CornerRadius = UDim.new(1, 0) UICorner.Parent = cloes UICorner_2.CornerRadius = UDim.new(0, 10) UICorner_2.Parent = Frame TextBox.Parent = Frame TextBox.BackgroundColor3 = Color3.fromRGB(107, 76, 77) TextBox.BorderColor3 = Color3.fromRGB(0, 0, 0) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0.0535714291, 0, 0.276422769, 0) TextBox.Size = UDim2.new(0, 201, 0, 41) TextBox.Font = Enum.Font.SourceSansBold TextBox.PlaceholderText = "Text to spam here." TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(0, 0, 0) TextBox.TextScaled = true TextBox.TextSize = 14.000 TextBox.TextWrapped = true UICorner_3.Parent = TextBox TextButton.Parent = Frame TextButton.BackgroundColor3 = Color3.fromRGB(26, 255, 0) TextButton.BackgroundTransparency = 0.300 TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.102678575, 0, 0.699186981, 0) TextButton.Size = UDim2.new(0, 177, 0, 28) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Start" TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true UICorner_4.CornerRadius = UDim.new(0, 10) UICorner_4.Parent = TextButton -- Scripts: local function GTAKH_fake_script() -- cloes.LocalScript local script = Instance.new('LocalScript', cloes) _G.spamin = false local chat = game:GetService("TextChatService") chat.TextChannels.RBXSystem:SendAsync(tostring("Quiet game is better than this shit.")) local function df(message) while _G.spamin == true do wait(1/math.random(30, 60)) chat.TextChannels.RBXSystem:SendAsync(tostring(message)) end end script.Parent.Parent.Parent.Frame.Active = true script.Parent.Parent.Parent.Frame.Draggable = true script.Parent.MouseButton1Click:Connect(function() script.Parent.Parent.Parent.Parent:Destroy() end) script.Parent.Parent.TextButton.MouseButton1Click:Connect(function() if _G.spamin == true then script.Parent.Parent.TextButton.Text = "Start" script.Parent.Parent.TextButton.BackgroundColor3 = Color3.new(0.101961, 1, 0) _G.spamin = false else script.Parent.Parent.TextButton.Text = "Stop" script.Parent.Parent.TextButton.BackgroundColor3 = Color3.new(1, 0, 0) _G.spamin = true df(script.Parent.Parent.TextBox.Text) end end) end coroutine.wrap(GTAKH_fake_script)()