You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 10, 2018. It is now read-only.
When an object is added to the character via a listener connected to the Equipped event, the Equipped event fires once again. This causes the maximum re-entrancy depth to be exceeded.
Tool.Equipped:connect(function()
local v = Instance.new("IntValue")
v.Parent = Character
end)
This does not occur after the listener thread yields.
Tool.Equipped:connect(function()
wait()
local v = Instance.new("IntValue")
v.Parent = Character
end)