This just means you are updating the datastore too frequently.
In your while true do loop you use
But Set has a limit of 50 + (10*playerCount) per minute (https://developer.roblox.com/en-us/articles/Datastore-Errors).
You'd be best off achieving this by saving less frequently, i.e. every minute. The general advise on when to save is, when the player leaves (using Players.PlayerRemoving), when the game shutdowns (using BindToClose) and about every minute (using a loop like you have, but less frequently).
https://developer.roblox.com/en-us/api-reference/event/Players/PlayerRemoving
https://developer.roblox.com/en-us/api-reference/function/DataModel/BindToClose
If you really need to update that frequently, you might be able to get away with just saving when .Changed is fired on the value.