So I to make my character block any attacks or damages he encounters by pressing Q and when it blocks, it'll play a little animation and start to block for a limited amount. But I don't know how to make the player reduce health damage when some sort of an enemy NPC decides to attack you. I don't want to add health onto player.
01 | --= Variables =-- |
02 |
03 | local UIS = game:GetService( 'UserInputService' ) |
04 |
05 | local Bar = script.Parent:WaitForChild( 'Background' ):WaitForChild( 'Bar' ) |
06 |
07 | local player = game.Players.LocalPlayer |
08 |
09 | local NormalWalkSpeed = game.Players.LocalPlayer.Character:WaitForChild( "Humanoid" ).WalkSpeed |
10 | local NewWalkSpeed = NormalWalkSpeed * 0.5 |
11 |
12 | local NormalHealthReduce = --??? |
13 | local NewHealthReduce = --??? |
14 |
15 | local power = 10 |
One way you could go about doing this (and I'm not sure if this is the most efficient, but rather a way to do it for now until you can come back to it with more knowledge), is putting a 'BoolValue' inside of the player model called "Blocking". When the player holds "Q", simply change the value to true. Clearly that doesn't help alone, but if you added an if statement to your damage script that checks "if hit.Parent.Blocking then do less damage" I think it could work quite well.
Tell me how this works out, I don't have access to studio right now but I'm very curious to see if this method works like I'm imagining it to.
Hope I helped!
-Cmgtotalyawesome
so the humanoid has a health changed function i believe; we can find the amount of changed health, divide by 2 and restore it back to the player. However, since health can only be changed using server scripts well have to use 2 scripts:
in a Script in StarerPack:
1 | local hp 01 = Instance.new( "RemoteEvent" , script) |
2 | hp 01. Name = "hp01" |
3 |
4 | hp 01. OnServerEvent:Connect( function (plr, hum, hp 04 ) |
5 | hum.Health = hum.Health + hp 04 / 2 |
6 | end ) |
in a LocalScript in the Script:
01 | local plr = game.Players.LocalPlayer |
02 | local mouse = plr:GetMouse() |
03 |
04 | local holding = false |
05 |
06 | local hp 01 = script.Parent:WaitForChild( "hp01" ) |
07 |
08 | mouse.KeyDown:Connect( function (key) |
09 | if key = = "q" then holding = true |
10 | local hum = plr.Character.Humanoid |
11 |
12 | while holding do |
13 | local hp 02 = hum.Health |
14 |
15 | wait() |
also i ended up not using the health changed function and just wrote a function which checks for change(specifically decrease) in health. That way its much more easier to check for the exact amount of decrease for, e.g, consecutive damage.