Is there a more efficient way of doing this?
This script looks, and probably is, very inefficient. And it doesn't want to work. Any help?
01 | game.Players.PlayerAdded:connect( function (plr) |
02 | local rank = Instance.new( "StringValue" , plr) |
04 | local stats = plr:WaitForChild( "leaderstats" ) |
05 | local rep = stats:WaitForChild( "Reputation" ) |
10 | print ( "Found " ..plr.Name.. "'s reputation." ) |
13 | if rep.Value < = 99 then |
14 | rank.Value = "Civilian" |
17 | if rep.Value > = 100 and rep.Value < 999 then |
18 | rank.Value = "Constable" |
21 | if rep.Value > = 1000 and rep.Value < 2499 then |
22 | rank.Value = "Vigilante" |
25 | if rep.Value > = 2500 and rep.Value < 4999 then |
29 | if rep.Value > = 5000 and rep.Value < 9999 then |
33 | if rep.Value > = 10000 and rep.Value < 14999 then |
34 | rank.Value = "Guardian" |
37 | if rep.Value > = 15000 and rep.Value < 24999 then |
41 | if rep.Value > = 25000 and rep.Value < 99999 then |
45 | if rep.Value > = 100000 and rep.Value < 249999 then |
46 | rank.Value = "Omeaga Hero" |
49 | if rep.Value > = 250000 then |
50 | rank.Value = "Saint of Sanctuary" |