wait (10) game.Workspace.Player.Humanoid.Health = 0
I want it to kill everyone after 10 seconds.
Please help.
Thanks.
there isn't a player called player, but this will work
game.Players.PlayerAdded:connect(function(Plr) wait(10) Plr.Character.Humanoid.Health=0 end)