#How to make a statue of the best player in game like in My Restaurant

1 messages · Page 1 of 1 (latest)

verbal valve
#

One message removed from a suspended account.

timid stream
#

do you have image concert?
I don't understand

civic ocean
#

get the UserId of the best player and use local Model = game.Players:GetCharacterAppearanceAsync(UserId) this function will get a model with a userid, you can then parent the model where you need it and change the primarypart CFrame on top of a statue base , and even play an animation to pose it if you wish

lethal sky
#

GetCharacterAppearanceAsync has been DEPRECATED

#
local model = game.Players:CreateHumanoidModelFromUserId(1)
model.Parent = game.Workspace
verbal valve
#

One message removed from a suspended account.

knotty sluice
#

Bonus, umm how do you get the current players ID (not best) and also will the model work for animation or do you need to add stuff?

verbal valve
#

One message removed from a suspended account.

#

One message removed from a suspended account.

timid stream
#

You can just remove texture on the character

lethal sky
red laurel
verbal valve
verbal valve
lethal sky
#

Just with 1 key frame of the pose you want

verbal valve
#

One message removed from a suspended account.

lethal sky
#

You can set the animation speed to 0

#

To pause it

verbal valve
#

One message removed from a suspended account.

verbal valve
lethal sky
verbal valve
lethal sky
#
local description = game.Players:GetHumanoidDescriptionFromUserId(1)
local model15 = game.Players:CreateHumanoidModelFromDescription(description, Enum.HumanoidRigType.R15)
local model6 = game.Players:CreateHumanoidModelFromDescription(description, Enum.HumanoidRigType.R6)

model15.Parent = workspace
task.wait(60)
model15.Parent = nil
model6.Parent = workspace
task.wait(60)
model15.Parent = workspace
model6.Parent = nil
#

you can reuse the same 2 models over and over

verbal valve
#

One message removed from a suspended account.