I know that most people would say that any visual effects should be kept on the client side to enhance performance and stuff but in my case, I want the effects to be seen by everyone in the server. Problem is, I use tweening to create the effects but it’s very apparent that the server does not like any sort of tweening.
Client tweening:
https://gyazo.com/685aafa9ab63d9bed82280d23199436b
Server tweening:
https://gyazo.com/9f9d58c8506a4b5bfce1efaef23d5c70
So the white neon strips that fly around is what I’m trying to fix. Can’t do it on a local script else only the client sees it, and I can’t do it on a server script else it’s gonna look terrible and shaky.
I realize that I can probably achieve the same effect with particle emitters because the Emit() function will work perfectly even on the server. Thing is, I’m not too fond of the idea of having to draw my own textures for particle emitters because I’m not a good artist by any means.