local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "k00pgui" gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 220, 0, 220) frame.Position = UDim2.new(0.3, 0, 0.3, 0) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.Active = true frame.Draggable = true frame.Parent = gui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0.2, 0) title.BackgroundTransparency = 1 title.Text = "k00pgui" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Parent = frame -- BOTÓN CHAT local chatButton = Instance.new("TextButton") chatButton.Size = UDim2.new(1, -20, 0.25, 0) chatButton.Position = UDim2.new(0, 10, 0.25, 0) chatButton.Text = "Enviar chat" chatButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255) chatButton.Parent = frame chatButton.MouseButton1Click:Connect(function() local msg = ":sm Game hacker by k00pkidd" game:GetService("ReplicatedStorage") .DefaultChatSystemChatEvents .SayMessageRequest:FireServer(msg, "All") end) -- BOTÓN CHAOS MODE (SEGURO) local chaosButton = Instance.new("TextButton") chaosButton.Size = UDim2.new(1, -20, 0.25, 0) chaosButton.Position = UDim2.new(0, 10, 0.55, 0) chaosButton.Text = "Chaos Mode" chaosButton.BackgroundColor3 = Color3.fromRGB(255, 80, 80) chaosButton.Parent = frame chaosButton.MouseButton1Click:Connect(function() local char = player.Character if not char then return end for _, v in pairs(char:GetChildren()) do if v:IsA("BasePart") then v.Color = Color3.fromRGB(255, 0, 0) v.Material = Enum.Material.Neon end end end)