- game:GetService("RunService").Stepped:connect(
- function()
- for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
- if tool.Name == "Punch" or tool.Name == "Ground Slam" or tool.Name == "Stomp" then
- tool:Destroy()
- elseif tool:IsA("Tool") then
- tool.Parent = game:GetService("Players").LocalPlayer.Character
- end
- end
- local tool = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool")
- tool:Activate()
- end)
- game.Players.LocalPlayer.Character.Humanoid.Health = 0