Valuize
|
  |
| Joined: 04 Nov 2012 |
| Total Posts: 15531 |
|
|
| 30 Jun 2015 01:42 PM |
I have a leaderboard.. I have three columns.
KOs WOs Credits
I would like to have someone add a colum, so another displays the rank the group..
RAP: 1,242,949 | ROBUX: R$96,950
Group: http://www.roblox.com/My/Groups.aspx?gid=777719
Current Leaderboard:
http://www.roblox.com/Group-Script-item?id=264198840
THIS PRIZE WILL BE BIG.. I NEED IT BY 3:00 EST! |
|
|
| Report Abuse |
|
|
Valuize
|
  |
| Joined: 04 Nov 2012 |
| Total Posts: 15531 |
|
|
| 30 Jun 2015 01:43 PM |
4 EST***
RAP: 1,242,949 | ROBUX: R$96,950 |
|
|
| Report Abuse |
|
|
Valuize
|
  |
| Joined: 04 Nov 2012 |
| Total Posts: 15531 |
|
|
| 30 Jun 2015 01:44 PM |
BUMP
RAP: 1,242,949 | ROBUX: R$96,950 |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:45 PM |
game.Players.PlayerAdded:connect(function(player) local leaderstats = Instance.new("Model") ----- Has to be called leaderstats.... leaderstats.Name = "leaderstats" leaderstats.Parent = player local money = Instance.new("StringValue") money.Name = "Rank" money.Value = 0 money.Parent = leaderstats if player:GetRankInGroup(2551499) == 0 then money.Value = "Guest" else end
end)
|
|
|
| Report Abuse |
|
|
|
| 30 Jun 2015 01:45 PM |
| got skype? i can send to you |
|
|
| Report Abuse |
|
|
Enzo01234
|
  |
| Joined: 24 Mar 2011 |
| Total Posts: 6131 |
|
| |
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:45 PM |
| Take the money variable part and the if player part. |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:47 PM |
local rank = Instance.new("StringValue") rank.Name = "Rank" rank.Value = 0 rank.Parent = leaderstats if player:GetRankInGroup(2551499) == 0 then ---- change the 0 to the rank number money.Value = "Guest" --- change the Guest to the name. else end
---- just copy this and paste for all the ranks, the if player part... |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:48 PM |
| if player:GetRankInGroup(2551499) == 0 then ------ change the number after get rank in group to your group ID |
|
|
| Report Abuse |
|
|
|
| 30 Jun 2015 01:53 PM |
@Dev That's inefficient, and will give him a lot of unnecessary lines.
Just add this after the current leaderstats:
local rank = Instance.new("StringValue") rank.Name = "Rank" rank.Value = player:GetRoleInGroup(777719) rank.Parent = leaderstats
|
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:54 PM |
| Probably fake, Im not one to post hate comments, but I hate these false advertising posts. If this is legit then cool I just got 1mil Rap and 70k Robux. Just ask next time.... |
|
|
| Report Abuse |
|
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 30 Jun 2015 01:54 PM |
...so basically I helped someone give a script to someone else. Great.
"Talk is cheap. Show me the code." - Linus Tivalds |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:54 PM |
| Wreker, its easier to adjust, and its effecient..... |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:55 PM |
Time, If this is legit ima give you half
Plus all you did was help me delete a line xD |
|
|
| Report Abuse |
|
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 30 Jun 2015 01:56 PM |
Sorry, I decline. I don't want worthless roblox currency.
"Talk is cheap. Show me the code." - Linus Tivalds |
|
|
| Report Abuse |
|
|
|
| 30 Jun 2015 01:56 PM |
Yes, because
if player:GetRankInGroup(blah) == 255 then money.Value = "Leader" end
if player:GetRankInGroup(blah) == 0 then money.Value = "Guest" end
if player:GetRankInGroup(blah) == 15 then money.Value = "RandomRankInBetween" end
will be better than
money.Value = player:GetRoleInGroup(blah) |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:58 PM |
| Ikr... I don't care about this games currency as much. I dislike those people who spend IRL money on this game just to make theirs chars look good..... Like it doesn't even matter. Oh and I never buy a games, unless its for a game with my IRL little friend, |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 01:58 PM |
| Wrecker this is a scam... I wish there was a ban or something for these false advertising people who can't script themselves.... |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
| |
|
|
| 30 Jun 2015 02:00 PM |
| I don't really care about the money. But if OP's gonna use the code, I think he's better off with :GetRoleInGroup(). If this is legit, mind splitting? xD |
|
|
| Report Abuse |
|
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 30 Jun 2015 02:00 PM |
"THIS PRIZE WILL BE BIG"
Obviously its going to be a scam. You needed to just post
http://wiki.roblox.com/index.php?title=Absolute_beginner%27s_guide_to_scripting
And be done with it.
"Talk is cheap. Show me the code." - Linus Tivalds |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 02:01 PM |
| So thats why you do that annoying stuff TimeTicks xD |
|
|
| Report Abuse |
|
|
Botchan
|
  |
| Joined: 14 Jun 2015 |
| Total Posts: 269 |
|
|
| 30 Jun 2015 02:01 PM |
Stop bumping this thread.
It's bad. |
|
|
| Report Abuse |
|
|
|
| 30 Jun 2015 02:01 PM |
and
http://wiki.roblox.com/index.php?title=Leaderboards |
|
|
| Report Abuse |
|
|
DevRenza
|
  |
| Joined: 12 Jun 2015 |
| Total Posts: 425 |
|
|
| 30 Jun 2015 02:02 PM |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Whoops just bumped >.> |
|
|
| Report Abuse |
|
|