--Open source thats why its just lua code print("the trash is loading...") print("talk GUI loaded") local chatEvent = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest chatEvent:FireServer("the trash is loaded, this script requires chat", "All") local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "talk" gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 250, 0, 120) frame.Position = UDim2.new(0.5, -125, 0.5, -60) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundTransparency = 1 title.Text = "talk" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.TextSize = 22 title.Parent = frame -- Button local button = Instance.new("TextButton") button.Size = UDim2.new(1, -20, 0, 50) button.Position = UDim2.new(0, 10, 0, 40) button.Text = "say smth fuckin stupid" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.BackgroundColor3 = Color3.fromRGB(60, 60, 60) button.Font = Enum.Font.SourceSansBold button.TextSize = 20 button.Parent = frame button.MouseButton1Click:Connect(function() chatEvent:FireServer("pissn everwhere", "All") end)