I have a server script which checks for if the player has a folder named ‘Debounces’. Do I need to add a :FindFirstChild(Debounces) -- Location to Debounces folder
or can I just use a simple: .Debounce -- Location to Debounce folder?
if your checking IF the player has a folder named Debounces then use a FindFirstChild() that way it wont error IF the player doesnt have it
but if the player always has it, you wont need a findfirstchild
1 Like
Its in ServerStorage and after its parented to the player so it would be alright to use:
.Debounces ?
if the location never changes, then you wont need findfirstchild
1 Like
Ye. It stays parented to the player when they join the game so I can just use .Debounces?
YES you do not need findfirstchild
however if you get an error cause it didnt load in time, you can use WaitForChild
1 Like