-
What do you want to achieve? Keep it simple and clear!
I’m trying to get leaderstat points to turn into another category using math symbols.
The problem that I keep running into is that the script works and all, but the leaderstats don’t change.
This is the full code, for adding changing the leaderstats2
wait(3)
local plr = game.Players.LocalPlayer
local Add = plr.leaderstats2.Subscribers
local remove = plr.leaderstats.Research
-------------------
if remove.Value > 5 then
while true do
Add.Value += 1
end
else if remove.Value < 5 then
print(plr.Name.." Card Declined..")
end
end
if remove.Value > 15 then
while true do
Add.Value += 4
end
else if remove.Value < 15 then
print()
end
end
if remove.Value > 50 then
while true do
Add.Value += 9
end
else if remove.Value < 50 then
print()
end
end
if remove.Value > 10000 then
while true do
Add.Value += 9000009
end
else if remove.Value < 10000 then
print()
end
end
I’ve tried remaking the script, it just doesn’t work. Perhaps somebody can help me??