play_animation

Plays a animation with the given in options

modules.play_animation(character: Instance, id: number, speed: number, time: number, smoothing: number)

Example

local character = game:GetService("Players").LocalPlayer.Character
modules.play_animation(
    character, -- given in character to play animations on
    3135389157, -- animation id
    0, -- speed of the animation
    .1 -- time position of the animation
)

Last updated