Im thinking for a long time bout this but I don't know how to make it.I would like to hear some sugestons. I want that the player's shirt and pant to be changed by pressing an wear button.
1 | function onClick() |
2 | Game.Players.LocalPlayer.Character.Shirt = "rbxassetid://000" --Change 000 to the number of your asset same to below. |
3 | Game.Players.LocalPlayer.Character.Pants = "rbxassetid://000" |
4 | end |
5 | script.Parent.MouseButton 1 Down:connect(onClick) |