net.Receive("art_start_animation",function() local what = net.ReadEntity() local anim = net.ReadString() what:SetupBones() what:SetLuaAnimation(anim) end) net.Receive("art_stop_animation",function() local what = net.ReadEntity() local anim = net.ReadString() what:StopLuaAnimation(anim) end)