-- Say I have a variable that could contain a player
local T1Player1 = player
-- Then I try to access this players leaderstats
local T1Player1InitialKills = T1Player1:FindFirstChild("leaderstats").Kills.Value
-- If T1Player1 is actually = nil would this line above break the code? Or since I added findfirstchild would it just skip over it if T1Player1 is nil?
Thanks for any help (I know I could just add an if statement to check if T1Player1 is nil, but I have to do this for 6 players so i’m just trying to shorten the code so it doesn’t look as messy)