So, I'm trying, trying. But I can't figure it out. I read that mouse objects aren't possible in Server Scripts. Is there any possible way?
I got this. In the local script.
plr = game.Players.LocalPlayer game.Workspace.FE.Saber:FireServer(plr:GetMouse(),plr)
And this in the server script.
Link to the script. It was too big.
I get all errors about the mouse object.
Any help?
There is no way possible, which allows you to send the mouse object, as the server doesn't have a mouse.
You'll have to send over all properties of the mouse that you want to send to the server every time you need them.
Event:FireServer(mouse.Target,mouse.Hit) -- etc
I attempted to understand what you're trying to do. I assume you're making a lightsaber, and upon clicking you're making it slash, correct?
INFO
TL;DR
IDEA