Hello DevForums, I ran into a little problem. I’m trying to put a folder containing things from ServerStorage into your character. I tried using a script in ServerScriptService, but I’m pretty sure I’m doing it wrong. Thanks.
1 Like
Are you using a localscript? If so, the client can’t access server services. Also, can I see a portion of your code?
1 Like
game:GetService('Players').PlayerAdded:connect(function(Player)
Player.CharacterAdded:connect(function(Character)
Folder.Parent=Character
end
end
2 Likes
and you can use startercharacter aswell if you’re unaware its inside StarterPlayer
1 Like