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
01 | local Tool = script.Parent.Parent |
03 | local Muzzle = Tool.Muzzle.PointLight |
04 | local FireSound = script:WaitForChild( "FireSound" ) |
05 | local HitSound = script:WaitForChild( "HitSound" ) |
06 | local CS = game:GetService( "CollectionService" ) |
07 | local player = game.Players.LocalPlayer |
11 | game.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()) |
17 | if Part and debounce = = false then |
18 | local Hum = Part.Parent:FindFirstChild( "Humanoid" ) |
25 | Muzzle.Enabled = false |
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
001 | local UnequipEvent = game.ReplicatedStorage.Folder.Unequipped |
002 | local EquippedEvent = game.ReplicatedStorage.Folder.Equipped |
003 | local char = script.Parent |
004 | local player = game.Players.LocalPlayer |
005 | local Character = workspace.Camera:WaitForChild( "Viewmodel" ) |
006 | local cam = workspace.Camera |
007 | local Mouse = game.Players.LocalPlayer:GetMouse() |
008 | local humanoid = Character:WaitForChild( "Humanoid" ) |
009 | local Run = script:WaitForChild( 'Run' ) |
010 | local Fire = script:WaitForChild( 'Fire' ) |
011 | local FireAnimTPS = script:WaitForChild( 'FireAnimTPS' ) |
012 | local Muzzle = Character.Gun.FirePart.Muzzle |
013 | local MuzzleLight = Character.Gun.FirePart.PointLight |
014 | local FireSound = script.Fire:WaitForChild( "FireSound" ) |
015 | local Reload = script:WaitForChild( 'Reload' ) |
016 | local ReloadTPS = script:WaitForChild( "ReloadAnimTPS" ) |
017 | local ReloadSound = script.Reload:WaitForChild( "ReloadSound" ) |
018 | local dance = humanoid:LoadAnimation(Run) |
019 | local FireAnim = humanoid:LoadAnimation(Fire) |
020 | local FireAnimTP = player.Character.Humanoid:LoadAnimation(FireAnimTPS) |
021 | local ReloadAnim = humanoid:LoadAnimation(Reload) |
022 | local ReloadAnimTPS = player.Character.Humanoid:LoadAnimation(ReloadTPS) |
024 | local Shooting = false |
025 | local Ammo = game.StarterPack.Gun.Ammo.Value |
026 | local Tool = game.StarterPack.Gun |
031 | EquippedEvent.OnClientEvent:Connect( function () |
034 | UnequipEvent.OnClientEvent:Connect( function () |
038 | player.Character.Humanoid.Running:connect( function (speed) |
039 | if speed < = 16 and humanoid.Jump = = false then |
042 | elseif speed > 18 and humanoid.Jump = = false then |
045 | MuzzleLight.Enabled = false |
050 | Mouse.Button 1 Down:Connect( function () |
051 | if Running = = false and Ammo > 0 and Fired = = true then |
056 | repeat FireSound:Play() Ammo = Ammo - 1 game.Players.LocalPlayer:GetMouse().TargetFilter = game.Players.LocalPlayer.Character print (Ammo)game.ReplicatedStorage.RayCastEvent:FireServer(Tool.FirePart.Position, Mouse.Hit.Position) Muzzle.Enabled = true MuzzleLight.Enabled = true wait( 0.1 ) Muzzle.Enabled = false until Ammo = = 0 or Shooting = = false or Running = = true or Fired = = false |
057 | if Ammo < = 0 and Fired = = true then |
058 | Muzzle.Enabled = false |
061 | MuzzleLight.Enabled = false |
066 | Character.Gun.Magazine.Transparency = 1 |
067 | Character.Magazine 1. Transparency = 0 |
069 | Character.Magazine 1. Transparency = 1 |
070 | Character.Gun.Magazine.Transparency = 0 |
080 | Mouse.Button 1 Up:Connect( function () |
082 | print ( "Not Shooting" ) |
085 | MuzzleLight.Enabled = false |
089 | player.Character.Humanoid.Died:Connect( function () |
090 | while player.Character.Humanoid.Health = = 0 do |
096 | Mouse.KeyUp:connect( function (key) |
097 | key = string.lower(key) |
098 | if string.byte(key) = = 48 then |
105 | Mouse.Button 2 Down:Connect( function () |
106 | Character.PrimaryPart = Character.AimHumanoid |
110 | Mouse.Button 2 Up:Connect( function () |
111 | Character.PrimaryPart = Character.PartHumanoid |