Despite adding a forcefield, you are still able to lose health, apparently.
01 | local force |
02 | local on = false |
03 |
04 | script.Parent.MouseButton 1 Down:connect( function () |
05 | local player = script.Parent.Parent.Parent.Parent |
06 |
07 | on = not on |
08 |
09 | if on then |
10 | player.Character.Humanoid.WalkSpeed = 0 |
11 | force = Instance.new( "ForceField" ,player.Character) |
12 | else |
13 | force:Destroy() |
14 | player.Character.Humanoid.WalkSpeed = 32 |
15 | end |
16 | end ) |
Try saving the amount of health they have when they turn on AFK. Then, when the health changes/repeatedly change their health to the amount that was saved. You will probably want to attach a value to a player/character and store the health in there so that you can change the health later on (also, you might want to put it outside of the connect and use a loop to check if on
is true
and then change the health.