bruh im just trying to make a stanima script
and i literally have no idea what this error is supposed to mean like literally what
i literally have no idea what to do with this
1 Like
An event handler is causing the event it’s connected to to fire, causing infinite recursion which is almost never intentional and would eventually eat all the available RAM so Roblox detects it and throws an error. Here’s a minimal example:
local invocations = 0
script.IntValue.Changed:Connect(function()
invocations += 1
script.IntValue.Value += 1
end)
script.IntValue.Changed:Wait()
wait()
print(script.IntValue.Value)
In my case it prints 7, I don’t know what to make of that but I guess it’s interesting.
Post your script if you want help finding it.
2 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.