I am making a game where the objective is to survive the longest. I do not even know where to start for making a script that starts a timer for every player and then the timer stop for a player when they have died or they are the last one standing.
I thought of using remote event, however I relised it would be impractical.
I think I found out a way to make this: Put a local script in StarterCharacterScripts and name it whatever you want. Create a NumberValue in the workspace and name it SurviveTime
01 | local Humanoid = game.Players.LocalPlayer.Character:WaitForChild( "Humanoid" ) |
02 | local Timer = game.Workspace.SurviveTime |
03 |
04 | while true do |
05 | for i = 1 , 1 , 1 do |
06 | if Humanoid.Health > = 1 then |
07 | Timer.Value = Timer.Value+ 1 |
08 | else |
09 | Timer.Value = Timer.Value+ 0 |
10 | end |
11 | end |
12 | end |
Hope this helps! Leave a comment if there is anything wrong or anything I should add.