Hello!
currently im making a gang creation system which requires a gangname, gang description, gang shirt id, and gang pants
Both of the gangname and gang description are working, except the shirt and pants
I’ve take a look at the forum and they said to find a texture id which I don’t know how to do it
It requires a command bar or plugins which I currently dont wanna do those since its a textbox.
I’ll explain more in the replies if it can help to solve this Topic.
You can use ‘’’:GetPropertyChangeSignal(textpropertyhere)’’’ to detect did the player inputted. Then create a new shirt or pants object and edit the ID property. After that, parent it to the player’s character. Btw, the ID property format should be: “https://rbxassetid://clothingassetidhere”
function ReturnAssestId(id)
local Asset = game:GetService("MarketplaceService"):GetProductInfo(id)
local results = "rbxassetid://"..Asset.AssetId
return results
end
This is a function i used to convert id to texture