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

Works, but how can I find the character that has shot the weapon from a server script?

Asked by 4 years ago
Edited 4 years ago
01local Tool = script.Parent.Parent
02debounce = false
03local Muzzle = Tool.Muzzle.PointLight
04local FireSound = script:WaitForChild("FireSound")
05local HitSound = script:WaitForChild("HitSound")
06local CS = game:GetService("CollectionService")
07local player = game.Players.LocalPlayer
08 
09 
10 
11game.ReplicatedStorage.RayCastEvent.OnServerEvent:Connect(function(Player,FromP,ToP)
12    local RayCast = Ray.new(FromP,(ToP-FromP).unit*100)
13    local ignore = workspace:GetChildren();
14    table.insert(ignore,player)
15    local Part = game.Workspace:FindPartOnRayWithIgnoreList(RayCast,workspace.Camera:GetDescendants())
View all 28 lines...

Edit 2 : I have fixed my old issue, now though I need to find a way to make the script ignore local player (This is problematic because you cannot find character from a server script, so, is there anyway I can make this server script make sure that the ray ignores the player who shot the gun?

This is the local part where the event is fired

001local UnequipEvent = game.ReplicatedStorage.Folder.Unequipped
002local EquippedEvent = game.ReplicatedStorage.Folder.Equipped
003local char = script.Parent
004local player = game.Players.LocalPlayer
005local Character = workspace.Camera:WaitForChild("Viewmodel")
006local cam = workspace.Camera
007local Mouse = game.Players.LocalPlayer:GetMouse()
008local humanoid = Character:WaitForChild("Humanoid")
009local Run = script:WaitForChild('Run')
010local Fire = script:WaitForChild('Fire')
011local FireAnimTPS = script:WaitForChild('FireAnimTPS')
012local Muzzle = Character.Gun.FirePart.Muzzle
013local MuzzleLight = Character.Gun.FirePart.PointLight
014local FireSound = script.Fire:WaitForChild("FireSound")
015local Reload = script:WaitForChild('Reload')
View all 113 lines...

1 answer

Log in to vote
0
Answered by
tomekcz 174
4 years ago
Edited 4 years ago

Before firing event in local script you need a line like that:

1game.Players.LocalPlayer:GetMouse().TargetFilter = game.Players.LocalPlayer.Character
001local UnequipEvent = game.ReplicatedStorage.Folder.Unequipped
002local EquippedEvent = game.ReplicatedStorage.Folder.Equipped
003local char = script.Parent
004local player = game.Players.LocalPlayer
005local Character = workspace.Camera:WaitForChild("Viewmodel")
006local cam = workspace.Camera
007local Mouse = game.Players.LocalPlayer:GetMouse()
008local humanoid = Character:WaitForChild("Humanoid")
009local Run = script:WaitForChild('Run')
010010 local Fire = script:WaitForChild('Fire')
011011 local FireAnimTPS = script:WaitForChild('FireAnimTPS')
012012 local Muzzle = Character.Gun.FirePart.Muzzle
013013 local MuzzleLight = Character.Gun.FirePart.PointLight
014014 local FireSound = script.Fire:WaitForChild("FireSound")
015015 local Reload = script:WaitForChild('Reload')
View all 115 lines...
Ad

Answer this question