Hi, I'm new to all this, first time learning to code so sorry if the answer is obvious.
Is it possible to call a function for every 300 seconds or something like that?
Use a loop.
do something like:
while true do wait(300) -- call function end
Good luck!