Jump to content

How can I make spawned in characters dance?


Recommended Posts

12 hours ago, ABoyInNeed said:

I wanna make them do emotes but I can't find the command for it anywhere pls help

Try this command!

 

local data = { anim = { "emoteXL_pre_dance0", "emoteXL_loop_dance0" }, loop = true, fx = false, beaver = true, moose = true, goose = true, mounted = true, mountsound = "curious", tags = { "dancing" } } 
c_select():PushEvent("emote", data)

Hover your mouse over a character to make them do the emote.

 

local data = { anim = { "emoteXL_pre_dance0", "emoteXL_loop_dance0" }, loop = true, fx = false, beaver = true, moose = true, goose = true, mounted = true, mountsound = "curious", tags = { "dancing" } } 
c_spawn("wilson"):PushEvent("emote", data)

Alternatively this'll spawn a wilson and make them do the dance emote, instead of having to spawn a character first and then using the first command. (You can replace wilson with any other character)

Tell me if it doesn't work so I can fix it.

Link to comment
Share on other sites

1 hour ago, Hornete said:

local data = { anim = { "emoteXL_pre_dance0", "emoteXL_loop_dance0" }, loop = true, fx = false, beaver = true, moose = true, goose = true, mounted = true, mountsound = "curious", tags = { "dancing" } } c_select():PushEvent("emote", data)

im curious, what that "moose=true, goose=true" does in the command?

Link to comment
Share on other sites

On 1/9/2021 at 11:31 PM, Hornete said:

Try this command!

 


local data = { anim = { "emoteXL_pre_dance0", "emoteXL_loop_dance0" }, loop = true, fx = false, beaver = true, moose = true, goose = true, mounted = true, mountsound = "curious", tags = { "dancing" } } 
c_select():PushEvent("emote", data)

Hover your mouse over a character to make them do the emote.

 


local data = { anim = { "emoteXL_pre_dance0", "emoteXL_loop_dance0" }, loop = true, fx = false, beaver = true, moose = true, goose = true, mounted = true, mountsound = "curious", tags = { "dancing" } } 
c_spawn("wilson"):PushEvent("emote", data)

Alternatively this'll spawn a wilson and make them do the dance emote, instead of having to spawn a character first and then using the first command. (You can replace wilson with any other character)

Tell me if it doesn't work so I can fix it.

Thank you!

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...