Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Gun server script doesnt work AND doesnt give error output?

Asked by
RAFA1608 543 Moderation Voter
5 years ago
Edited 5 years ago

Heres the serverscript for a gun i've been working on. But, it doesnt appear to do anything nor returns error message.

01local lighting = game.Lighting
02local player = nil
03local ignorelist = Instance.new("Model",lighting)
04local tool = script.Parent
05local sanim = script:WaitForChild("Shootanim") -- theres a holding animation in a local script (which only does the holding animation)
06local firepart = script.Parent:WaitForChild("firepart")
07local char = nil
08local sanima = nil
09local sooldown = false
10local gui = script:WaitForChild("GlockGUI")
11local gui2 = nil
12local maxstock = 60 --max stock of ammo you can carry
13local ammo = 8 --ammo shot before needing to reload
14local ammoreloadwait = 1 --1 seconds to reload
15local reloading = false
View all 62 lines...

I suspect the mouse is inactive. Thank you.

1 answer

Log in to vote
1
Answered by 5 years ago

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.

0
Didnt know that. Thank you. RAFA1608 543 — 5y
Ad

Answer this question