of     1   

xXSaquisameXx
#134955146Saturday, May 24, 2014 10:33 AM GMT

i want to make a GUI Health bar and u can also see what is ur heath liek numbers. if u dont mind making for me or just teach me thank you
coo1o
#134963103Saturday, May 24, 2014 2:02 PM GMT

You're in the wrong forum, boy.
prsho
#134976937Saturday, May 24, 2014 5:01 PM GMT

The following script rounds the health value on the GUI to a whole number and displays it. Right now the script is setup to be in a directory like this: ScreenGui \Script \TextBox Meaning that Script.Parent = ScreenGui, and TextBox.Parent = ScreenGui ______ SCRIPT ______ --Prsho function round(val, decimal) --rounds number to avoid a ton of decimals if (decimal) then return math.floor( (val * 10^decimal) + 0.5) / (10^decimal) else return math.floor(val+0.5) end end while true do wait() local player = script.Parent.Parent.Parent if player.Character.Humanoid ~= nil then local health = player.Character.Humanoid.Health local rounders = round(health) --Calls function "round" to round Health value script.Parent.TextBox.Text = rounders end end
xXSaquisameXx
#135043159Sunday, May 25, 2014 7:57 AM GMT

It like when ur Health is Down it turning Red ind how do i do in the GUI u cant write on it u cant touch it?? thank you

    of     1