its not giving me 100 coins i get this error: ServerScriptService.rich:7: Expected identifier when parsing expression, got <eof>
1 | --Locals-- |
2 |
3 | local NomanCoins = game.Players:WaitForChild( "Noman538" ).leaderstats.Coins.Value |
4 |
5 | --Main-- |
6 |
7 | NomanCoins = 100 + |
I know im bad at scripting
Put the value you want to add in first, then add the value you want to it.
1 | --Locals-- |
2 |
3 | local NomanCoins = game.Players:WaitForChild( "Noman538" ).leaderstats.Coins.Value |
4 |
5 | --Main-- |
6 |
7 | NomanCoins = NomanCoins + 100 |