My leaderstats only say minus or -

Actually, that’s one of the best ways to learn scripting. That’s how i’m learning too. The only problem is that there’s isn’t many free models that links itself to leaderboard stats i’m afraid. But i’m sure you’ll find a way tho.

1 Like

its ok people failed to fix this problem atleast they try there best its ok im gonna fix this problem myselft

1 Like

So you say it work on other place. So try to transfer all at the other place.

i try this once but the same problem happend again

i manage to fix this problem
Screenshot (5)

this its the script btw if you wanna use the script for your game
local Wallet = Instance.new(‘IntValue’, leaderstats)
Wallet.Name = ‘Wallet’
Wallet.Value = 250

And thanks to people who are trying to help me i appreciated your help

Quick feedback, you shouldn’t use the 2nd parameter in Instance.new. You should set the parent once you have the name and value set, like this:

local Wallet = Instance.new('IntValue')
Wallet.Name = 'Wallet'
Wallet.Value = 250
Wallet.Parent = leaderstats -- Always do this instead of using the 2nd parameter.

The 2nd parameter may negatively affect performance if you use it often.