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

Is there a way to reduce player health damage when blocking?

Asked by
fr2013 88
6 years ago

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 
03local UIS = game:GetService('UserInputService')
04 
05local Bar = script.Parent:WaitForChild('Background'):WaitForChild('Bar')
06 
07local player = game.Players.LocalPlayer
08 
09local NormalWalkSpeed = game.Players.LocalPlayer.Character:WaitForChild("Humanoid").WalkSpeed
10local NewWalkSpeed = NormalWalkSpeed * 0.5
11 
12local NormalHealthReduce = --???
13local NewHealthReduce = --???
14 
15local power = 10
View all 67 lines...
0
ok TheluaBanana 946 — 6y
0
ok fr2013 88 — 6y
0
I feel like some games know how to block but there were no tutorials, so I tried to do it with a shield script, but didn't work anyways fr2013 88 — 6y

2 answers

Log in to vote
0
Answered by 6 years ago

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

0
when they are blocking simply deal less damage User#24403 69 — 6y
0
But how do I make my character get less damage from NPC's fr2013 88 — 6y
Ad
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

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:

1local hp01 = Instance.new("RemoteEvent", script)
2hp01.Name = "hp01"
3 
4hp01.OnServerEvent:Connect(function(plr, hum, hp04)
5    hum.Health = hum.Health + hp04 / 2
6end)

in a LocalScript in the Script:

01local plr = game.Players.LocalPlayer
02local mouse = plr:GetMouse()
03 
04local holding = false
05 
06local hp01 = script.Parent:WaitForChild("hp01")
07 
08mouse.KeyDown:Connect(function(key)
09    if key == "q" then holding = true
10        local hum = plr.Character.Humanoid
11 
12        while holding do
13            local hp02 = hum.Health
14 
15            wait()
View all 28 lines...

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.

0
He said he doesn't want to add health back to the player (not sure if he meant while blocking or after taking damage, but figured I should let you know before you write that script out) cmgtotalyawesome 1418 — 6y
0
o ok ye i havent yet thx TheluaBanana 946 — 6y
0
also im pretty sure he meant blocking TheluaBanana 946 — 6y
0
worth a shot TheluaBanana 946 — 6y
View all comments (2 more)
0
Well it does kinda work but whenever I sometimes let go of the "q", it'll make the health full, but I need my character with his original low health fr2013 88 — 6y
0
ok after some editing i wasnt able to replicate ur result. Ill post the new script in above; also could u see wether u could do that with the new scripts? TheluaBanana 946 — 6y

Answer this question