I’m creating a game that has a lot of NPCs moving around at once, and animations right now are the biggest thing giving me trouble.
I can get them to animate just fine, it’s that animation scripts are really, REALLY demanding and often hog resources, making the server lag.
Fair enough, you say, just move it to the client! So that’s what I tried next, making the client handle all of the NPCs animations instead. And that (mostly) fixed server lag issues. However, once ~25+ NPCs were in game, my frames started dropping like crazy. (And I’m not running cheap hardware, mind you.)
So. I’m wondering what’s the best way to go about making a lot of NPCs animate nicely without hogging resources on either end. Any suggestions?
You must be doing something wrong, for my game all player animations and NPC animations are handled locally. Tried it with 75 players and 100 NPCs and it worked fine.
All I do is just loop through all players and play animations based on what they’re doing 15 times a second, so for example if their velocity is higher than 1 on x or z I play the running animation, if their velocity on y is higher than 1 I play the jumping animation.
Well it was in a module script function which was called from a local script in PlayerGui, but you could just put it in a normal local script. I like to keep my things organised.
I agree with @vsnry because roblox has introduced the 100 player limit and they all use animations i dont think its a roblox problem or hardware you may want to try what vsnry suggested