Damage range with a part? [CLOSED]
I'm trying to make a part appear, and damage all players (except the client player) within the light's radius (inside the part, which is 16 by 16 by 16 inside a 16 range light). The entire script works, but the damage part is the part I'm trying to figure out. Sometimes it damages them, sometimes it doesn't. Please help. Oh, and, here's the script and the layout is here.
01 | local tool = script.Parent |
02 | local handle = tool.Handle |
03 | local light = handle.PointLight |
04 | local player = game.Players.LocalPlayer |
09 | if Enabled = = true then |
12 | local col = game.Lighting.Storage.collide:Clone() |
14 | col.Position = handle.Position |
17 | light.Brightness = 100 |
20 | col.Touched:connect( function (hit) |
21 | if hit.Parent:FindFirstChild( "Humanoid" ) and hit.Parent.Name ~ = player.Name and debounce = = false then |
23 | hit.Parent.Humanoid:TakeDamage( 10 ) |
29 | col.Position = Vector 3. new( 0 ,. 01 , 0 ) |
33 | tool:FindFirstChild( "collide" ):Destroy() |
39 | script.Parent.Activated:connect(activated) |