Basically i need to do
Function = function()
Function()
end
instead of
local Function = function()
Function()
end
I heard it’s bad practice to use global variables, and i don’t really use it but in this speficic scenario i need to call the function from inside itself, is there a downside to doing it like this?