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

Custom Leaderboard Help?

Asked by
TrollD3 105
9 years ago

I want to make a custom leaderboard that shows everyone's name going down. sorta like this :

http://ftg.operationsupplydrop.org/wp-content/uploads/2014/11/2014-11-10_00004.jpg

I have the guis for the right side but Idk why this isnt working. I want the player's name to be on those lines. How would this work for multiple players? I dont want the same player name to be showing up. This is the script I have so far.

leader = script.Parent -- this is a text button
local Players = game:GetService("Players")

function onPlayerAdded(player)
     print(player.Name)
leader.Text = (..."Player.Name"...)

end
0
Is this a localscript? User#5423 17 — 9y
0
this is not in a local script and it says nothing in the output. Btw its a script inside the workspace TrollD3 105 — 9y
0
It's not working, because you're not calling it in anyway. Functions without a caller is considered as a "dead" function. Redbullusa 1580 — 9y
0
Put that in a localscript in the textlabe. parkderp1 105 — 9y
0
*label parkderp1 105 — 9y

Answer this question