What is the TaskScheduler service?

I have not been able to find any information on the TaskScheduler service in the forums and I was wondering what its used for, if it can be used and if so, how could I use it? There’s just one problem, when I try getting this service using game:GetService("TaskScheduler"), it returns the following error:
image
It also says the service can be found in the Studio Settings, which I wasn’t able to find. Does anyone have any info on this?

Because Task Scheduler in the settings window requires Internal Permissions to view.

As for the error, it’s because TaskScheduler isn’t a DataModel service, but a GlobalSettings service instead.
You can access the object via settings():GetService("TaskScheduler") if you want to use the properties, but keep in mind that settings() requires plugin permissions to use so you won’t be able to do this in a live game.

2 Likes

Thank you for the detailed response! A shame I can’t use this in a live game, might of been useful.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.