More specifically, when the script generates the items, how would I go about getting each individual item it chooses, finding a matching tool in a folder with the same name as the chosen item, to then use its values for a shop GUI?
So, I don’t want the item to be picked randomly, I want a certain item to always be on the shop on one day, then I want another certain item to be on the shop on the second day. How would i Make that?
Ex: day 1:orange - day 2:apple - day 3: grape - day 4: orange - day 5: apple…(and it keeps repeating).
This system is awesome! I have a question though. How would I apply this to a sort of category system? I’m making a game that revolves around 4 weapon types. In the shop I want there to be 4 slots, in those slots will be skins for each weapon type. So slot 1 = weapontype1, slot 2 = weapontype2, etc. And in these slots it does the same exact system of rotating daily however only skins for that weapon type will appear in their respective slot. For example only skins for weapontype1 will appear in slot one. I think I may have an idea on how to do this, pretty much just using the normal system but making it separate for every weapon type. Is there a better way to do this by chance?
I love this system! However I have a question. I’m making a module script that has a dictionary of every cosmetic in the game. This dictionary stores the info such as name, model, rarity, price, and imageid. In the tutorial you say make tables for all the items of certain rarities. Would it be possible to just use the module script dictionary instead since it stores the rarity of every cosmetic within it? If so how would I properly implement this way of rarity storing into the function?
I understand that for accurate time synchronization from Google to Roblox, you need to account for network latency by adding a response delay variable that calculates the round-trip time and use half of it to adjust the time. But you should be adding the responseDelay variable to the originTime, not subtracting it.
Curious but how necessary is the “SyncTime” module anymore now that we have DateTime? I feel as though it may have been conceptualised before DateTime was available to developers but it should already be naturally synced to an extent reasonable enough to make a time-seeded shop like this, and you don’t suffer the (edge case) bottle neck of a potential failed call to Google to extract the header. It’s also using tick which is deprecated.