purpledanx
(daniel)
December 18, 2022, 11:05pm
#21
You could just clone the player character and replace the dummies character with the player’s
local model = game.Workspace:WaitForChild(player.Name):Clone()
local oldCframe = game.Workspace.Dummy:GetPrimaryPartCFrame()
game.Workspace.Dummy:Destroy()
model.HumanoidRootPart.CFrame = oldCframe
model.Parent = game.Workspace
Cub0p
(SubTo_Cub0p)
December 18, 2022, 11:10pm
#22
Oh, I did both ApplyDescription() and ApplyDescriptionReset(). I fixed it but this still happens.
Cub0p
(SubTo_Cub0p)
December 18, 2022, 11:11pm
#23
Well no, I need the character even if the player isn’t in the game for global leaderboards.
purpledanx
(daniel)
December 18, 2022, 11:12pm
#24
Oh right so with a dummy that is larger then the player it just bugs out. You could just use the script I provided on top
purpledanx
(daniel)
December 18, 2022, 11:13pm
#25
Oh ok then, Let me do more testing and I’ll come back
purpledanx
(daniel)
December 18, 2022, 11:15pm
#26
Well the easiest way to fix this is just to make the dummy the same size as the player
Cub0p
(SubTo_Cub0p)
December 18, 2022, 11:22pm
#27
Alright thank you, I’ll try doing so.
BendsSpace
(BendsSpace)
December 18, 2022, 11:29pm
#28
When I make podiums like these I just create a new character model with Players:CreateHumanoidModelFromDescription()
. Then I don’t need to worry about the character model being incorrectly formatted and stuff.
1 Like
Cub0p
(SubTo_Cub0p)
December 18, 2022, 11:52pm
#29
Wait but this error is still there,
Humanoid::ApplyDescription() Some requested assets were not available
purpledanx
(daniel)
December 19, 2022, 12:00am
#30
Ok try all of this on a server script just to find out if it even works
Cub0p
(SubTo_Cub0p)
December 19, 2022, 12:02am
#31
The actual statue works, but the error for some reason is still there.
Cub0p
(SubTo_Cub0p)
December 19, 2022, 12:03am
#32
That bug that I had is resolved, that error though is just lurking still.
purpledanx
(daniel)
December 19, 2022, 12:04am
#33
I think this is just an error with the player. If it doesn’t affect anything then problem solved.
Cub0p
(SubTo_Cub0p)
December 19, 2022, 12:06am
#34
Did this error also pop up when you tried it? Also, how can I stop this from showing up, I don’t want it flooding my output.
purpledanx
(daniel)
December 19, 2022, 12:07am
#35
It didn’t show up when I did it. But I think the error might be that the player you are accessing the description from has something it can’t copy
purpledanx
(daniel)
December 19, 2022, 12:07am
#36
So it might not show up when used on someone else
Cub0p
(SubTo_Cub0p)
December 19, 2022, 12:09am
#37
Well is there a way to hide this error?
purpledanx
(daniel)
December 19, 2022, 12:13am
#38
Cub0p
(SubTo_Cub0p)
December 19, 2022, 12:16am
#39
I don’t really want to hide it using the output, I don’t want it from appearing at all.
purpledanx
(daniel)
December 19, 2022, 12:46am
#40
Then I’m not really sure, sorry.