#custom player animations arent working
1 messages · Page 1 of 1 (latest)
can i get more information about how its not working
some methods it just plays the default animation, others just dont play any animation at all
custom player animations arent working
can i see the code?
i did the roblox studio wiki method, the animate file, and one script in the server scripts
but i can only send the server script later
i alsk tried avatar settings
but nothing
`local Players = game:GetService("Players")
local function onCharacterAdded(character)
local humanoid = character:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
print("Animator encontrado!")
local animateScript = character:WaitForChild("Animate")
animateScript.run.RunAnim.AnimationId = "rbxassetid://127080594717169"
animateScript.walk.WalkAnim.AnimationId = "rbxassetid://99963281776547"
animateScript.jump.JumpAnim.AnimationId = "rbxassetid://71916673991722"
animateScript.idle.Animation1.AnimationId = "rbxassetid://116930294392409"
animateScript.idle.Animation2.AnimationId = "rbxassetid://116930294392409"
animateScript.fall.FallAnim.AnimationId = "rbxassetid://128878657793222"
end
local function onPlayerAdded(player)
player.CharacterAdded:Connect(onCharacterAdded)
end
Players.PlayerAdded:Connect(onPlayerAdded)`
** You are now Level 1! **
this one just make that none animation play
hi?
????