It's in this script:
leader = game.Workspace:WaitForChild("LEADERBOARDS") myname = leader:WaitForChild("5DistanceName") myval = leader:WaitForChild("5Distance") while wait(2) do script.Parent.Text = (tostring(myname.Value)" :: "..tostring(myval.Value)) -- ERROR HERE end
The value of myval is a number, the value of myname is a string and if not then it is "-".
What is wrong?? I get this: attempt to call a string value
On line six, you have a syntax error. You forgot to concatenate the string.
script.Parent.Text = (tostring(myname.Value).." :: "..tostring(myval.Value)) -- ERROR HERE