So I’m creating a global and server leaderboard, and I have those working, however I want to load a statue of the #1 player. I’ve tried many ways but the closest I’ve gotten is this:
As you can see some of the accessories are broken.
Here’s the code:
script.Parent.Parent.Parent.Podium.Part.SurfaceGui.Frame.Username.Text = name
script.Parent.Parent.Parent.Podium.Part.SurfaceGui.Frame.Cash.Text = a(coins).." Cash"
local id = dataStored.key
local Models = game.Players:GetCharacterAppearanceAsync(id)
Models.Parent = script.Parent.Parent.Parent.Dummy
wait()
for i,v in pairs(Models:GetChildren()) do
v.Parent = script.Parent.Parent.Parent.Dummy
wait()
end