Unable to cast string to int64?
Asked by
0msh 333
5 years ago
this is a global leaderboard script, it works if there's one of them but it doesn't when I have multiple. it gives me a error of "Unable to cast string to int64", and supposedly the error happens on line 38
01 | local datastore = game:GetService( "DataStoreService" ) |
02 | local players = game:GetService( "Players" ) |
04 | local globalstore = datastore:GetOrderedDataStore( "globalgold1" ) |
05 | local board = workspace.GoldBoard.Part |
07 | local temp = board.SurfaceGui.ScrollingFrame.Frame:Clone() |
08 | board.SurfaceGui.ScrollingFrame.Frame:Destroy() |
10 | local function update() |
12 | for _,child in pairs (board.SurfaceGui.ScrollingFrame:GetChildren()) do |
13 | if child:IsA( "Frame" ) then |
18 | local suc, err = pcall ( function () |
20 | local data = globalstore:GetSortedAsync( false , 30 ) |
21 | local page = data:GetCurrentPage() |
23 | for rank,plrData in ipairs (page) do |
25 | local name = plrData.key |
26 | local money = plrData.value |
29 | local npc = workspace:FindFirstChild( "2" ) |
32 | npc.UserId.Value = name |
37 | local new = temp:Clone() |
38 | new.PlrName.Text = players:GetNameFromUserIdAsync(name) |
40 | new.LayoutOrder = rank |
42 | new.Parent = board.SurfaceGui.ScrollingFrame |
57 | for _,plr in pairs (game.Players:GetPlayers()) do |
59 | globalstore:SetAsync(plr.UserId,plr.leaderstats.Gold.Value) |