|
| Author | Message |
|---|
Hydromancer Novice Scripter

Posts: 47 Join date: 2011-01-29
 | Subject: How to increase health February 5th 2011, 7:33 pm | |
| To increase health, you have to: | Code: | game.Workspace.Player.Humanoid.Health = 1000 -- "Player" is an example game.Workspace.Player.Humanoid.MaxHealth = 1000 -- also, you can change 1000 -- to the value of your choice
|
This script is simple! If you have any questions or if there is any mistakes, pm me. |
|
 | |
slayer9365 Administrator


Posts: 233 Join date: 2010-07-31 Age: 17
 | Subject: Re: How to increase health February 5th 2011, 7:40 pm | |
| This will only work once, you will need to make it fire after you respawn if you wanted to make it always work. |
|
 | |
NotAPotato Expert Scripter


Posts: 40 Join date: 2011-01-21
 | Subject: Re: How to increase health February 5th 2011, 10:12 pm | |
| This doesn't seem to be a tutorial, more of a "copy and paste this script and pretend that you made it yourself" thread. |
|
 | |
blueymaddog Administrator


Posts: 1108 Join date: 2010-12-09 Age: 13
 | Subject: Re: How to increase health March 11th 2011, 3:29 am | |
| lol funny way of putting it. are you crazypotato? _________________ blueymaddog Administrator • Moderator • Expert Scripter PM: blueymaddog<+1 post. ujelly?> |
|
 | |
myrco919 Intermediate Scripter


Posts: 187 Join date: 2011-01-21 Age: 13 Location: Holland
 | Subject: Re: How to increase health June 27th 2011, 7:33 am | |
| Obsiously: If you want to set a Value/propertie higher/lower then you set its Value to its own Value +/- a Value. (VALUE = VALUE + 1 VALUE = VALUE - 1) Elseway you would set it to a new Value. (VALUE = 5) |
|
 | |
m27frogy Moderator


Posts: 159 Join date: 2011-06-23
 | Subject: Re: How to increase health June 27th 2011, 8:52 am | |
| Honestly, the script wouldn't work because the "end" would cause a stack end as there is nothing to end. |
|
 | |
naknak Administrator


Posts: 855 Join date: 2010-07-30
 | Subject: Re: How to increase health June 28th 2011, 7:14 am | |
| Fixed. Still no connection line though. I didn't feel like adding it. |
|
 | |
m27frogy Moderator


Posts: 159 Join date: 2011-06-23
 | Subject: Re: How to increase health June 30th 2011, 8:30 am | |
| This script could have been a lot simpler. BTW, could anyone explain to me the difference between pairs and ipairs? |
|
 | |
naknak Administrator


Posts: 855 Join date: 2010-07-30
 | Subject: Re: How to increase health June 30th 2011, 9:01 am | |
| I have never noticed a useful difference. I just stick to pairs. |
|
 | |
m27frogy Moderator


Posts: 159 Join date: 2011-06-23
 | Subject: Re: How to increase health June 30th 2011, 9:07 am | |
| Okay, cool. So, if I read it right, pairs just handles the table selecting for you?!?!? AWESOME!!! |
|
 | |
blueymaddog Administrator


Posts: 1108 Join date: 2010-12-09 Age: 13
 | Subject: Re: How to increase health November 20th 2011, 2:27 am | |
| | m27frogy wrote: | | This script could have been a lot simpler. BTW, could anyone explain to me the difference between pairs and ipairs? |
ipairs loops through all numeric indexes and pairs loops through all indexes in a table. I believe that ipairs may be fast though..._________________ blueymaddog Administrator • Moderator • Expert Scripter PM: blueymaddog<+1 post. ujelly?> |
|
 | |
|