| |
|
KTeddy13
|
  |
| Joined: 02 Jul 2010 |
| Total Posts: 1346 |
|
| |
|
buster925
|
  |
| Joined: 05 Jul 2008 |
| Total Posts: 322 |
|
|
| 08 Aug 2011 05:34 PM |
| ya when i put in the linked leaderboard it didnt work and said "unexpected symbol near %" |
|
|
| Report Abuse |
|
|
|
| 08 Aug 2011 06:49 PM |
| I just visited one of my games on roblox which relies on leaderboards and it had no problems. It may be the case with other games, but obviously not mine since I use my own special way of creating leaderboards. That may help explain why the games you visited had no leaderboards because they may have used a broken script in which you will have to contact the creator of the place to have it fixed that is if he/she even coded it, or you simply had the player list hidden. |
|
|
| Report Abuse |
|
|
|
| 08 Aug 2011 06:51 PM |
| In other words, don't use the leaderboard roblox gives you. Make your own... |
|
|
| Report Abuse |
|
|
|
| 08 Aug 2011 07:51 PM |
| Yep, you are on a different team even when your not on the team. |
|
|
| Report Abuse |
|
|
|
| 28 Sep 2017 03:22 PM |
I tried adding my own leaderboard and it looks like this:
function onPlayerEntered(newPlayer)
local stats = Instance.new("IntValue") stats.Name = "leaderstats"
local cash1 = Instance.new("IntValue") cash1.Name = "Level" cash1.Value = 1 local cash2 = Instance.new("IntValue") cash2.Name = "Exp" cash2.Value = 0 local cash3 = Instance.new("IntValue") cash3.Name = "Gold" cash3.Value = 0
cash1.Parent = stats cash2.Parent = stats cash3.Parent = stats stats.Parent = newPlayer end
game.Players.ChildAdded:connect(onPlayerEntered)
and i still cant get it to work. Anybody got ideas? |
|
|
| Report Abuse |
|
|