So I'm using a raycasting gun and when I fire it at a NPC , the NPC reaches 0 health but doesnt die and keeps following me? Here is the scripts. Oh and by the way they are holding a sword because they are ninjas.
01 | local tool = script.Parent |
02 | local player = game:GetService( "Players" ).LocalPlayer |
03 |
04 | tool.Equipped:connect( function (mouse) |
05 | print ( "Tool equipped!" ) |
06 |
07 | mouse.Button 1 Down:connect( function () |
08 | print ( "Mouse pressed!" ) |
09 | local ray = Ray.new(tool.Handle.CFrame.p, (mouse.Hit.p - tool.Handle.CFrame.p).unit * 300 ) |
10 | local part, position = workspace:FindPartOnRay(ray, player.Character, false , true ) |
11 |
12 | local beam = Instance.new( "Part" , workspace) |
13 | beam.BrickColor = BrickColor.new( "White" ) |
14 | beam.FormFactor = "Custom" |
15 | beam.Material = "Plastic" |
Thanks!
I believe this is due to your game having FilteringEnabled on, it means that anything that the Client does cannot affect anything on the server, in this case the NPC. This means that no one else in the game can see this change, only the Client. This is so that the game can attempt to stop exploiters and trolls inserting inappropriate images into the game. Instead, the Client would request for things to happen for the server to do, for example the Client requesting the NPC to be damaged by the sword.
With your script, the Client appears to have changed the NPCs health, but that's only to the Client, not to the server. The server still thinks the NPC's health has not changed. Below is a link regarding Filtering Enabled being discussed:
https://devforum.roblox.com/t/how-do-i-even-go-about-using-filtering-enabled/150072
Hope this helps a bit!