Heres the serverscript for a gun i've been working on. But, it doesnt appear to do anything nor returns error message.
01 | local lighting = game.Lighting |
02 | local player = nil |
03 | local ignorelist = Instance.new( "Model" ,lighting) |
04 | local tool = script.Parent |
05 | local sanim = script:WaitForChild( "Shootanim" ) -- theres a holding animation in a local script (which only does the holding animation) |
06 | local firepart = script.Parent:WaitForChild( "firepart" ) |
07 | local char = nil |
08 | local sanima = nil |
09 | local sooldown = false |
10 | local gui = script:WaitForChild( "GlockGUI" ) |
11 | local gui 2 = nil |
12 | local maxstock = 60 --max stock of ammo you can carry |
13 | local ammo = 8 --ammo shot before needing to reload |
14 | local ammoreloadwait = 1 --1 seconds to reload |
15 | local reloading = false |
I suspect the mouse is inactive. Thank you.
Server cannot track the player's mouse. You must use a local script to communicate that.
The local script should handle animations and player inputs. When they fire the mouse you should include information like their mouse position. Depending on your security measures, you can keep ammo, firerate, and raycasting on the server.
You can also render the raycast on the client and replicate it to everyones' screen locally. That way when the player shoots, it looks instantaneous on their own screen while delayed on others.