local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:WaitForChild("Humanoid") -- Criar GUI local gui = script.Parent -- Botão Speed local speedButton = Instance.new("TextButton") speedButton.Size = UDim2.new(0, 150, 0, 40) speedButton.Position = UDim2.new(0, 10, 0, 10) speedButton.Text = "Speed x2" speedButton.Parent = gui speedButton.MouseButton1Click:Connect(function() humanoid.WalkSpeed = 32 end) -- Botão Jump local jumpButton = Instance.new("TextButton") jumpButton.Size = UDim2.new(0, 150, 0, 40) jumpButton.Position = UDim2.new(0, 10, 0, 60) jumpButton.Text = "Super Jump" jumpButton.Parent = gui jumpButton.MouseButton1Click:Connect(function() humanoid.JumpPower = 100 end) -- Botão Reset local resetButton = Instance.new("TextButton") resetButton.Size = UDim2.new(0, 150, 0, 40) resetButton.Position = UDim2.new(0, 10, 0, 110) resetButton.Text = "Reset" resetButton.Parent = gui resetButton.MouseButton1Click:Connect(function() humanoid.Health = 0 end) -- Botão Normal local normalButton = Instance.new("TextButton") normalButton.Size = UDim2.new(0, 150, 0, 40) normalButton.Position = UDim2.new(0, 10, 0, 160) normalButton.Text = "Normal" normalButton.Parent = gui normalButton.MouseButton1Click:Connect(function() humanoid.WalkSpeed = 16 humanoid.JumpPower = 50 end)