Hi you all. I was wondering what the best way to load a player’s character is when they join.
Here is how I usually reference the character:
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
local character = player.character --Here is what I'm talking about
end)