"maximum event re-entrancy depth exceeded" Error, anyone know how to fix? [UPDATE]
(Scroll down for old code)
Oh, by the way, the error occurs when I equip the tool
Just edited it a bit, still says the same thing, but here's the code again.
(Layout)
01 | local tool = script.Parent |
02 | local handle = tool.Handle |
03 | local light = handle.PointLight |
04 | local player = game.Players.LocalPlayer |
08 | if Enabled = = true then |
11 | local col = script.collide:Clone() |
13 | col.Position = handle.Position |
16 | light.Brightness = 100 |
19 | col.Touched:connect( function (hit) |
20 | if hit.Parent.Humanoid and hit.Parent.Name ~ = player.Name then |
21 | hit.Parent.Humanoid:TakeDamage( 10 ) |
27 | tool:FindFirstChild( "collide" ):Destroy() |
33 | script.Parent.Activated:connect(activated) |
Here is the code, but before you look at it, look at this.
01 | local tool = script.Parent |
02 | local handle = tool.Handle |
03 | local light = handle.PointLight |
04 | local player = game.Players.LocalPlayer |
07 | if script.Enabled = = true then |
08 | script.Enabled = false |
09 | local col = script.collide:Clone() |
11 | col.Position = handle.Position |
13 | light.Brightness = 100 |
15 | col.Touched:connect( function (hit) |
16 | if hit.Parent.Humanoid and hit.Parent.Name ~ = player.Name then |
17 | hit.Parent.Humanoid:TakeDamage( 10 ) |
23 | tool:FindFirstChild( "collide" ):Destroy() |
29 | script.Parent.Activated:connect(activated) |
Oh, and here's the code for the script I made to attempt to fix it. (The "Script" inside the Light Orb)
3 | if not script.Parent.LocalScript.collide then |
4 | local c = game.Lighting.Storage.collide:Clone() |