I wanna know what I can do load animations on the server, I don’t need an entire script, just a simple explanation on how I would accomplish it.
I’ve tried researching, and attempted loading an animation on the server, but it just doesn’t work.
I wanna know what I can do load animations on the server, I don’t need an entire script, just a simple explanation on how I would accomplish it.
I’ve tried researching, and attempted loading an animation on the server, but it just doesn’t work.
animations shouldnt be done on server because that can cause animation looking laggy for client and if you want animations to replicate to the server from client then you should load animation to Animator which is a Parent of Humanoid
-- Client
local Humanoid = Character:WaitForChild("Humanoid")
local Animator = Humanoid:WaitForChild("Animator")
local AnimationTrack = Animator:LoadAnimation(Animation)
but if you want to load animation for exaple for npc then you should use server
nvm, I just used the pcall function
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.