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

Is there a more efficient way of doing this?

Asked by 9 years ago

This script looks, and probably is, very inefficient. And it doesn't want to work. Any help?

01game.Players.PlayerAdded:connect(function(plr)
02    local rank = Instance.new("StringValue", plr)
03        rank.Name = "Rank"
04    local stats = plr:WaitForChild("leaderstats")
05    local rep = stats:WaitForChild("Reputation")
06 
07    --POSITIVE
08 
09    if rep then
10        print("Found "..plr.Name.."'s reputation.")
11    end
12 
13    if rep.Value <= 99 then
14        rank.Value = "Civilian"
15    end
View all 99 lines...
0
Well you certainly should use elseif instead of all those ifs, but I don't know any super clever way to make it much shorter. I hope someone else does. Perci1 4988 — 9y
0
I had elseifs, but it crashed. Still didn't work, though. SimplyRekt 413 — 9y

1 answer

Log in to vote
0
Answered by
A9X 10
9 years ago

The way you're doing it is probably the most efficient, sorry.

Ad

Answer this question