Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

StarterCharacter Clothing Arent Show in game. What is Wrong With it?

Asked by 5 years ago

I dont have the code right now but everytime i put clothing on my r15 startercharacter it is not showing up

1 answer

Log in to vote
0
Answered by
oftenz 367 Moderation Voter
5 years ago

Simply butting clothing in startercharacter doesn't put it on the player. I am expecting you have Filtering Disabled.

shirtid = "http://www.roblox.com/asset/?id=" --put ID after the =
pantsid = "http://www.roblox.com/asset/?id=" --put ID after the =

game.Players.PlayerAdded:connect(function(player)
    char = game.Players.LocalPlayer.Character
    char.Shirt.ShirtTemplate = shirtid
    char.Pants.PantsTemplate = pantsid
end)

Whenever a player joins use PlayerAdded.

0
still not working OnlineSaiyan 28 — 5y
0
Put that LOCASCRIPT in starterGUI oftenz 367 — 5y
Ad

Answer this question