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

I need to set a limit on the value?

Asked by
DevingDev 346 Moderation Voter
8 years ago

So, Ya im trying to set a limit so i cant the units value cant get over 50 this is wat i got so far . I dont know why its not working thats the hole script and this the part with "If Units.Value == 50 then Units.Value = Units.Value - 10" its there the limit im trying to set is not working.

01Cash = Player.leaderstats.Cash
02Units = Player.leaderstats.Units
03 
04function onClick()
05    if Cash.Value >= 20 then
06        Cash.Value = Cash.Value - 20
07        Units.Value = Units.Value + 1
08            local Barbarian = game.Lighting.Barbarian:clone()
09    end
10    if Units.Value == 50 then
11        Units.Value = Units.Value - 10
12    end
13    if Cash.Value <= 20 then
14        script.Parent.NotEnough.Visible = true
15        wait(2)
16        script.Parent.NotEnough.Visible = false
17    end
18end
19 
20script.Parent.MouseButton1Click:connect(onClick)
0
Change line 10 to: "if Units.Value > 50 then" (without the quotation marks, ofc). Also fix your grammar so others can understand you better. TheDeadlyPanther 2460 — 8y
0
I'd suggest checking your grammar on this question. I wish I could answer it, but you've made some grammar errors. GiveMeYourPudding 64 — 8y
0
got it working thanks "TheDeadlyPanther" DevingDev 346 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

Maybe use

Cash = Player.leaderstats.Cash Units = Player.leaderstats.Units

01function onClick()
02    if Cash.Value >= 20 then
03        Cash.Value = Cash.Value - 20
04        Units.Value = Units.Value + 1
05            local Barbarian = game.Lighting.Barbarian:clone()
06    elseif Cash.Value <= 20 then
07        script.Parent.NotEnough.Visible = true
08        wait(2)
09        script.Parent.NotEnough.Visible = false
10    end
11    if Units.Value == 50 then
12        Units.Value = Units.Value - 10
13    end
14end
15 
16script.Parent.MouseButton1Click:connect(onClick)

They are both about Cash so I elseif'ed it.

Ad

Answer this question