Gun script not working, nothing happens when you use the tool?
Asked by
4 years ago Edited 4 years ago
For some reason this script doesn't work.
02 | local plr = game.Players.LocalPlayer |
03 | local tool = script.Parent.Parent |
05 | local handle = tool.Handle |
07 | local config = tool.Config |
08 | local range = config.Range |
09 | local dmg = config.Damage |
10 | local coolDown = config.CoolDown |
11 | local clips = config.Clips |
12 | local ammo = config.Ammo |
13 | local maxAmmo = config.MaxAmmo |
14 | local allowTracing = config.AllowTracing |
15 | local reloadTime = config.ReloadTime |
16 | local isReloading = false |
18 | local reloadSound = tool.Handle.ReloadSound |
19 | local fireSound = tool.Handle.FireSound |
20 | local equipSound = tool.Handle.EquipSound |
21 | local emptySound = tool.Handle.EmptySound |
24 | tool.Equipped:connect( function (mouse) |
26 | tool.Activated:connect( function () |
27 | if not isReloading then |
28 | if ammo.Value > 0 then |
35 | local ray = Ray.new(hole.CFrame.p, (mouse.Hit.p - hole.CFrame.p) * range.Value) |
36 | local hit, position = workspace:FindPartOnRay(ray, plr.Character, false , true ) |
39 | if allowTracing.Value = = true then |
41 | local trace = Instance.new( "Part" , workspace) |
42 | trace.Material = Enum.Material.Neon |
43 | trace.BrickColor = BrickColor.new( "Black" ) |
44 | trace.CanCollide = false |
46 | trace.Transparency = 0.5 |
49 | local distance = (hole.CFrame.p - position).magnitude |
50 | trace.Size = Vector 3. new( 0.2 , 0.2 , distance) |
51 | trace.CFrame = CFrame.new(hole.CFrame.p, position) * CFrame.new( 0 , 0 , -distance/ 2 ) |
54 | game:GetService( "Debris" ):AddItem(trace, 0.1 ) |
59 | local humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
61 | if hit.Name = = "Head" then |
63 | humanoid:TakeDamage(dmg.Value* 2 ) |
66 | humanoid:TakeDamage(dmg.Value) |
70 | ammo.Value = ammo.Value - 1 |
82 | mouse.KeyDown:connect( function (key) |
85 | if not isReloading then |
86 | if clips.Value > 0 then |
89 | ammo.Value = maxAmmo.Value |
90 | clips.Value = clips.Value - 1 |
91 | wait(reloadTime.Value) |