Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Is using a loop to wait for a character better than using characteradded?

Asked by 4 years ago
Edited 4 years ago

Is using a loop such as

local Character ; while not Player.Character or not Player.Character.Parent do wait() end ; Character = Player.Character ;

better than using a characteradded event?

0
CharacterAdded simply passes a Character argument. Waiting for the Character to spawn in is literally the same thing as CharacterAdded because the loop stops at the same time that CharacterAdded would fire. DeceptiveCaster 3761 — 4y
0
I know it is the same thing, but I was told that the code above is safter than the event. Thesquid13 301 — 4y
0
A repeat loop is the most common option to wait until the character exists. DeceptiveCaster 3761 — 4y

Answer this question