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

How do i build a stamina bar?

Asked by 8 years ago

I'm trying to build a stamina bar GUI for my game. I already built a Health Gui from AlvinBlox's youtube channel. Don't worry i tried to understand about the guis. I started thinking how to start scripting. I tried setting an IntValue to stamina. Such as 100. And then i told the script: if the player's walkspeed is above 16 then substract 1 from the so-called 'STAMINA POINTS' each second. Here's what my code sort of looked like. Am I going the right way? I used a local script. What else could I use?

01local player = game.Players.LocalPlayer
02local humanoid = player.Character.Humanoid --------------------- HUMANOID?
03local staminabar = script.Parent -------------------------THE ACTUAL STAMINA BAR
04local staminaframe = script.Parent.Parent ---------------------FRAME THAT HOLD THE BAR
05local staminamax = 100 ----------------------------MAXIMUM STAMINA
06 
07humanoid.Changed:connect(function()
08 
09local stamina = Instance.new('IntValue', player)
10stamina.Name = 'StaminaVal'
11stamina.Value = 100
12 
13    while true do
14        if humanoid.WalkSpeed > 16 then ------------if walkspeed > 16 then waste stamina
15            stamina.Value = stamina.Value - 1
View all 22 lines...
0
Well, it'll only work if the player's WalkSpeed value is greater than 16, and not when running/ walking/ etc.; if that's your intention, then I recommend using the Magnitude value of Velocity from the player's torso, which is a bit complicated & may be overdoing things. :P TheeDeathCaster 2368 — 8y
0
I forgot to mention this, but i really only want to waste stamina when WalkSpeed is faster than 16. So long as its above 16 stamina decreases. Which is really boring. If you have any other suggestions on how i should use the stamina bar please let me know. Mariojumper5 26 — 8y
0
i ALSO FORGOT TO MENTION THAT IT DOESN`T WORK Mariojumper5 26 — 8y
0
whats the line after end for? AnotherPerson_999 28 — 6y

1 answer

Log in to vote
0
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
8 years ago
Edited 8 years ago

You're almost there. Just need to make a couple of changes:

  • 1) Create the Stamina value on the server. Reference it on the client. This can be done using a PlayerAdded event with a Script in ServerScriptStorage.

  • 2) Add the walkspeed condition to your while loop, so it doesn't run forever.

  • 3) Add a debounce to prevent multiple firings of the event subtracting your value.

01local player = game.Players.LocalPlayer
02 
03repeat wait() until player.Character --Wait for the character
04 
05local humanoid = player.Character.Humanoid
06local staminaframe = script.Parent.Parent
07local staminabar = script.Parent
08local staminamax = 100
09local db = false --Step 3
10 
11local stamina = player:WaitForChild("StaminaVal") --Step 1
12 
13humanoid.Changed:connect(function()
14    if not db then
15        db = true
View all 22 lines...
Ad

Answer this question