#i do not understand
1 messages · Page 1 of 1 (latest)
print("hi")
plr.CharacterAdded:Connect(function(character)
print("hi") -- doesn't print
print("hi")
plr.CharacterAdded:Connect(function(character)
print("hi") -- This will print when the character is added
end)
also, if you want to just wait until the character is loaded:
print("hi")
plr.CharacterAdded:Wait() -- this will work the same as wait() or task.wait() and pause everything until the character loads
print("hi")
oh wait nvm thanks for the explanation but i jst realized i was blind