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

The script works only if the player spawns with the condition,but i want it to work every time, how?

Asked by
Echtic 128
6 years ago

This is the script:

01wait()
02local plr = game.Players.LocalPlayer
03local magice = plr:WaitForChild("MagicEnergy")
04local maxmagice = plr:WaitForChild("MaxMagicEnergy")
05 
06 
07if magice.Value ~= maxmagice.Value then
08 
09    repeat
10 
11        wait(.5)
12        magice.Value = magice.Value + 10
13        wait(.5)
14 
15    until
16 
17    magice.Value == maxmagice.Value
18 
19 
20end

Like i said It works only if the player spawns with magice.Value being less than maxmagice.Value, but i need it to do the regeneration every time magice.Value is lower than maxmagice.Value

1 answer

Log in to vote
1
Answered by 6 years ago
Edited 6 years ago

like this the script is executed only once. Try this:

01wait()
02local plr = game.Players.LocalPlayer
03local magice = plr:WaitForChild("MagicEnergy")
04local maxmagice = plr:WaitForChild("MaxMagicEnergy")
05 
06while true do
07wait ()
08if magice.Value ~= maxmagice.Value then
09 
10    repeat
11 
12        wait(.5)
13        magice.Value = magice.Value + 10
14        wait(.5)
15 
View all 22 lines...

While true do lets it run in a loop

0
Exactly what i needed, thanks! Echtic 128 — 6y
0
No problem :) MageMasterHD 261 — 6y
Ad

Answer this question