I have done this code VVV
wait(5) FindH = game.Players:FindFirstChild(Humanoid) FindH:Destroy()
but it does not work. I know about the PlayerJoined command but I need to be able to find all the players and edit them for a game I am making. So how would I do that?
You would need a loop and the GetChildren method.
wait(5) for i,v in pairs(game.Players:GetChildren()) do v.Character.Humanoid:Destroy() end