Registering Functions
Your function by itself will only run once if you even call it, however, using the following method will make sure that based on the refresh rate chosen in the menu, it will be called repeatedly.
local function Function()
--do something
end
RegisterCallback(Function)
Was this page helpful?