How would I make this check every 5 seconds?

you would have to make an if statement for if the player has >= 29 points then you will break out of the loop so that it will not continuously add points. you would also have to count the number of badges the player owns and put a capacity towards it, so if the player owns 15/29 badges then you would check every 5 seconds to see if they have earned anymore badges, if not, then you will not add another point until they earn another badge.

So how would that script look like?

i am currently working on the script

1 Like

Thank you so much! Much appreaction.

1 Like

@Exotic_Stuffing, lets take this into PM’s

wait() is deprecated. Use task.wait(5) instead.