#How to make a statue of the best player in game like in My Restaurant
1 messages · Page 1 of 1 (latest)
do you have image concert?
I don't understand
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
GetCharacterAppearanceAsync has been DEPRECATED
local model = game.Players:CreateHumanoidModelFromUserId(1)
model.Parent = game.Workspace
One message removed from a suspended account.
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?
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
You can just remove texture on the character
You can also use a animation to make it stand like a status
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
Just with 1 key frame of the pose you want
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
local description = game.Players:GetHumanoidDescriptionFromUserId(1)
local model = game.Players:CreateHumanoidModelFromDescription(description, Enum.HumanoidRigType.R6)
model.Parent = workspace
One message removed from a suspended account.
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
One message removed from a suspended account.