#starter character help

1 messages · Page 1 of 1 (latest)

wind geyser
#

im trying to just change the starter character when you start playing the game, before i thought there was a folder named starterCharacter and i would just put my model in there and boom. But they removed that and now im lost

#
local Players = game:GetService("Players")
local RS = game:GetService("ReplicatedStorage")
local char = RS:WaitForChild("Rig")

Players.PlayerAdded:Connect(function(plr)
        plr.CharacterAdded:Connect(function(char)
            plr.Character = char
        end)
end)
#

that's what i have for the moment

#

sorry for bed english

umbral nexus
#

Just put the character in the StarterPlayer folder

#

And make sure the name is StarterCharacter

wind geyser