#How to make a dummy looks like your active avatar 24/7

1 messages · Page 1 of 1 (latest)

surreal sequoia
#

Yo! I kind of have an issue with the dummys in roblox studio these days. back then it was kind of easier and it worked and now it doesnt work anymore lmao? but anyway, what i am trying to do (its simple and im dumb ik) is making the dummy look like your active avatar you have in roblox right now, and i kind of dont find any resouces or help in the internet and really need the help lol. and if im already here, i also need help how i could make the dummy animated 24/7 like sitting somewhere animated. that was evrything, thanks !

#

whoops

#

anyway meant this dummy always turn into my avatar i have on rn? for like every player visually for their own

jagged beacon
#

humanoid:applydescription

surreal sequoia
high roost
#

Players:GetHumanoidDescriptionFromUserId and Humanoid:ApplyDescription or Players:CreateHumanoidModelFromUserId and parent it to the workspace

surreal sequoia
#

in a local script or

#

._.

high roost
surreal sequoia
olive atlasBOT
#

studio** You are now Level 1! **studio

high roost
surreal sequoia
#

what do i add there

#

im slow

high roost
surreal sequoia
#

yeah but

surreal sequoia
#

what do i add there

high roost
surreal sequoia
high roost
# surreal sequoia okay, what then? what do i add in the script
local Players = game:GetService("Players")

Players.PlayerAdded:Connect(function(player: Player)
    local userId = player.UserId
    
    local humanoidDescription: HumanoidDescription = Players:GetHumanoidDescriptionFromUserId(userId)
    
    local npcModel: Model = Players:CreateHumanoidModelFromDescription(humanoidDescription, Enum.HumanoidRigType.R6)
    npcModel.Parent = workspace
end)
surreal sequoia
#

and what about the rig dummy?

#

what do i have to do there

high roost
surreal sequoia
#

ah it did !

#

thanks, but do i only see it in game?

surreal sequoia
#

oh hm

high roost
#

if you wanna see the dummy in the workspace

surreal sequoia
#

i wanna see it in the studio and test yes

#

thats the issue

#

the goal i want is like animating the dummy aswell

high roost
# surreal sequoia i wanna see it in the studio and test yes

in the command bar paste this

local humanoidDescription: HumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(userid)

local npcModel: Model = game.Players:CreateHumanoidModelFromDescription(humanoidDescription, Enum.HumanoidRigType.R6)
npcModel.Parent = workspace```

change userid with the player's avatar you want
surreal sequoia
high roost
surreal sequoia
#

yeah i want 1 dummy, it should be visual for every player differently, i am trying to do a title screen with the dummy + animation, thats why i ask, so everytime a player logs in they see their own character in the title screen

high roost
#

alright

surreal sequoia
#

and the only issue is the dummy rn

high roost
#

wait gimme a bit

surreal sequoia
surreal sequoia
high roost
surreal sequoia
#

i forgot sadly ._.

high roost
# surreal sequoia i forgot sadly ._.

sorry it took so long had to go to eat but

avatar at the top of roblox studio -> character -> masculine, r6, spawn block avatar -> it will spawn a rig in workspace -> move that rig into replicatedstorage

create a local script in starter player -> starterplayerscripts

local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local player = game.Players.LocalPlayer
local dummy = ReplicatedStorage.Rig:Clone()
dummy.Parent = workspace

local userid = player.UserId

local humanoidDescription: HumanoidDescription = Players:GetHumanoidDescriptionFromUserId(userid)
local humanoid = dummy.Humanoid

humanoid:ApplyDescription(humanoidDescription)
surreal sequoia
#

that should be everything?

olive atlasBOT
#

studio** You are now Level 2! **studio

surreal sequoia
#

omg thanks so much

#

theres an issue

high roost
surreal sequoia
#

well we are 3 people in the world rn

#

and i see 3 rigs

#

and i am supposed to see only my own?

high roost
surreal sequoia
#

nope roblox

#

im in roblox rn testing, its a bit better bc of somth like that

#

omg wait

#

im dumb

#

i forgot to delete that before

#

the script you gave me before

#

it worked

#

THANKSS

high roost
high roost
surreal sequoia
#

and one more question, when i put an animation on that rig, will it be animated aswell?

#

on that specific rig

high roost
surreal sequoia
#

yeah script with animation

#

?

high roost
surreal sequoia
#

if im correct

#

okay good

#

thanksss

surreal sequoia
#

i added an idle on the rig

#

it didnt work

#

even tho i added the ID into the script ,,animate'' and the normal one in idle1

#

oh nvm

#

it worked now

#

oh no nvm it didnt work anyway