Im pretty new to this but how do i make my roblox r15 character that i pasted into the game dance?
local gpp = game.Parent gpp:PlayEmote(132546884)
this is most likely completely wrong. tbh i dont know what im doing. i cant find anything on the api reference.
Use LoadAnimation
Lets say there's a Dummy in workspace, and an animation in the workspace too.
local Dummy = workspace:WaitForChild("Dummy") local AnimationId = workspace:WaitForChild("Animation") local Animation = Dummy.Humanoid:LoadAnimation(AnimationId) Animation:Play()
You Can do this by Loading an animation into the character's Humanoid !
But First You must Create The Animation then load it from the humanoid first Like this :
local Character = script.Parent local Animation = Instance.new("Animation")--- Creates an animation ---///Edit the animation Animation.Name = "ANIMATION NAME HERE !" Animation.AnimationId = "ANIMATION ID HERE !" Animation.Parent = Character ---Put you parent here. I did the character local Humanoid = Character:WaitForChild("Humanoid") local LoadAnimation = Humanoid:LoadAnimation(Animation)---Load The Animation with the character's humanoid LoadAnimation:Play()---Once it is loaded it will play instantly !
And then the animation shall play
This script should be placed in the character model !!!
--T40