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.
01 | Cash = Player.leaderstats.Cash |
02 | Units = Player.leaderstats.Units |
03 |
04 | function 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 |
18 | end |
19 |
20 | script.Parent.MouseButton 1 Click:connect(onClick) |
Maybe use
Cash = Player.leaderstats.Cash Units = Player.leaderstats.Units
01 | function 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 |
14 | end |
15 |
16 | script.Parent.MouseButton 1 Click:connect(onClick) |
They are both about Cash so I elseif'ed it.