I am making a RP game, and I need to know how to create a moiney system. (The money preferably being gold) Thanks!
Hi there! Leader board is main place where you can display any kind of your game currency!
Lets start:
--first lets create a leaderstats for each player joined the game. game.Players.PlayerAdded:connect(function(newPlayer) local stats = Instance.new('BoolValue') stats.Name = 'leaderstats' stats.Parent = newPlayer --Now lets create a gold value for it local gold = Instance.new('IntValue') gold.Value = 0 --or any other number will give the player that amount of gold when you start the game gold.Name = 'Gold' gold.Parent = stats --now you should have Gold in your leader board when you start the game end)
Hope this helps!