Joined
·
7 Posts
hi, I'm running into this problem of being unable to create more than 2 currencies, can someone please correct me here,
game.Players.PlayerAdded:connect(function(player)
local leaderboard = Instance.new("Folder",player)
leaderboard.Name = "Leaderboard"
local Ruby = Instance.new("IntValue", leaderboard)
local Note = Instance.new("IntValue", leaderboard)
Note.Name = "Note"
Ruby.Name = "Ruby"
Note.Value = 0
Ruby.Value = 0
end
end)
if you are possible, can you please recreate this script into the right format, because I'm not yet understanding how the game isn't registering my 2 currencies?
nvm I found the issue
game.Players.PlayerAdded:connect(function(player)
local leaderboard = Instance.new("Folder",player)
leaderboard.Name = "Leaderboard"
local Ruby = Instance.new("IntValue", leaderboard)
local Note = Instance.new("IntValue", leaderboard)
Note.Name = "Note"
Ruby.Name = "Ruby"
Note.Value = 0
Ruby.Value = 0
end
end)
if you are possible, can you please recreate this script into the right format, because I'm not yet understanding how the game isn't registering my 2 currencies?
nvm I found the issue