💅Swing Animations

Добавление собственной анимации в Hand

script:name("Item 360") -- Имя скрипта
script:devs({"ConeTin"}) -- Разработчики
script:desc(":3") -- Описание

HandAnimation = client:get("Hand", "Анимация")
HandAnimation:add("Размер")

events.swing:set(function(event)
    if HandAnimation:is("Размер") then
        event:getMatrixStack():scale(1-event:getProgress()*0.7, 1-event:getProgress()*0.7, 1-event:getProgress()*0.7)
    end
end)

Last updated

Was this helpful?