Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Unable to cast string to int64?

Asked by
0msh 333 Moderation Voter
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

01local datastore = game:GetService("DataStoreService")
02local players = game:GetService("Players")
03 
04local globalstore = datastore:GetOrderedDataStore("globalgold1")
05local board = workspace.GoldBoard.Part
06 
07local temp = board.SurfaceGui.ScrollingFrame.Frame:Clone()
08board.SurfaceGui.ScrollingFrame.Frame:Destroy()
09 
10local function update()
11 
12    for _,child in pairs (board.SurfaceGui.ScrollingFrame:GetChildren()) do
13        if child:IsA("Frame") then
14            child:Destroy()
15        end
View all 64 lines...
0
Does that give you the player in object form and not string? Try players:GetNameFromUserIdAsync(name).Name instead. I'm not sure if it'll work, but it's worth a shot. Happy_Liam 64 — 5y
0
Print out what name is and print out type(name) to see what datatype it is. rokedev 71 — 5y
0
I'd try what @insane_r said. Print out type(players:GetNameFromUserIdAsync(name)). I'm assuming it's an IntValue as the error says Int64, but you can try it or do tostring(players:GetNameFromUserIdAsync(name)) killerbrenden 1537 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

I believe that the name variable is a string. Try doing this on line 38 instead.

1new.PlrName.Text = players:GetNameFromUserIdAsync(tonumber(name))
0
Argument 1 missing or nil 0msh 333 — 5y
Ad

Answer this question