Hello,
I am trying to make an Outfit Loader game. I am trying to make it so that when the player clicks on a dummy, the player can see what a player is wearing and can also buy it. I am pretty sure this would require the Avatar Inspect Menu but I am unsure. Any help would be appreciated. (below is a video of what I am trying to achieve)
This is a script I tried before:
local GuiService = game:GetService("GuiService")
local Players = game:GetService("Players")
function click(plr)
GuiService:InspectPlayerFromUserId(339310190)
end
script.Parent.ClickDetector.MouseClick:Connect(click)