You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
I want to add a new type of currency in my game, so there will be 5 currency types. -
What is the issue? Include screenshots / videos if possible!
There are only 4 currencies shown in the leaderstats.
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried to move on out, and then move one back in. I took the seashells while in the game and dropped it out of the leaderstats folder, and then the Cat Coins finally appeared, but when I added the seashells back to the leaderstats folder, the Cat Coins disappeared again.
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
There is nothing wrong with the script!
Here are the lines of the Instancing:
local CatfoodValue = Instance.new("IntValue")
CatfoodValue.Name = "CatFood"
CatfoodValue.Archivable = true
CatfoodValue.Parent = leaderstats
local XPValue = Instance.new("IntValue")
XPValue.Name = "XP"
XPValue.Archivable = true
XPValue.Parent = leaderstats
local CoconutsValue = Instance.new("IntValue")
CoconutsValue.Name = "Coconuts"
CoconutsValue.Archivable = true
CoconutsValue.Parent = leaderstats
local SeashellsValue = Instance.new("IntValue")
SeashellsValue.Name = "Seashells"
SeashellsValue.Archivable = true
SeashellsValue.Parent = leaderstats
local CatCoinsValue = Instance.new("IntValue")
CatCoinsValue.Name = "CatCoins"
CatCoinsValue.Archivable = true
CatCoinsValue.Parent = leaderstats
Any help is appreciated!