I'm trying to change a player's shirt to the shirt id below right when they join. The code below is in a localscript inside StarterPlayerScripts.
The script just takes away the current user's shirt but doesn't replace it with the id below, only showing the players base colors.
1 | wait( 1 ) |
2 | script.Parent.Parent.Character [ "Shirt" ] .ShirtTemplate = "http://www.roblox.com/asset/?id=230178938" |
Could someone please tell me how I fix this or if there is another way to do this?
Thanks.
When on putting the shirt ID, did you subtract one?
1 | wait( 1 ) |
2 | script.Parent.Parent.Character [ "Shirt" ] .ShirtTemplate = "http://www.roblox.com/asset/?id=230178937" --subtract one to the ID-- |