"player:WaitForChild("Character")"
That will never work as Character is not a child, it is a property that stores an reference to the character object.
local character = player.Character or player.CharacterAdded:wait()
This ultimately does what you tried to do @Derp |