As said in the title I want all players to follow default RTHRO animation in my game, but am unable to use the animate script to change the animations, this is the first time am trying it, any and all help will be appreciated
You can instead use HumanoidDescription | Roblox Creator Documentation to edit the animations instead of fiddling with the animate script, I believe it does it for you.
local humanoid = player.Character and player.Character:FindFirstChild("Humanoid")
if humanoid then
local descriptionClone = humanoid:GetAppliedDescription()
descriptionClone.IdleAnimation = 754637456
-- Apply modified "descriptionClone" to humanoid
humanoid:ApplyDescription(descriptionClone)
end
1 Like