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

Damage 5 Every Second?

Asked by 5 years ago
Edited 5 years ago

okay, so im making a game when you touch the brick, it will damage you by 5 every second. but when you stop touching it, it stops damaging you. but my script doesn't stop it from damaging the player AND it doesn't even damage it every second. i cant seem to figure out how to do this though. please help!

1function touch(hit)
2    while true do
3        hit.Parent:FindFirstChild("Humanoid").Health = hit.Parent:FindFirstChild("Humanoid").Health -5
4        wait (1)
5    end
6end
7 
8script.Parent.Touched:connect(touch)
0
try this: sinbadxfan05 3 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago

You have had some really strange answers. This is probably the simplest solution:

01--Using a debounce so happens once a second:
02debounce = false
03 
04--Touched Function:
05 
06script.Parent.Touched:Connect(function(hit)
07 
08 
09    --Checks if it is a human:
10    if hit.Parent:FindFirstChild("Humanoid") then
11 
12        --Checks if the debounce is true (returns if it is)
13        if debounce == true then
14            return
15        end
View all 29 lines...

Added comments within the script but if you have any questions let me know.

0
Works! TheEmeraIdDev 22 — 5y
Ad
Log in to vote
-1
Answered by 5 years ago

try this: ` local function getPlayerFromCharacter(character) for _, player in pairs(game:GetService("Players"):GetPlayers()) do if player.Character == character then return player end end end

script.Parent.Touched:connect(function(hit) if hit and hit.Parent then Character = hit.Parent player = getPlayerFromCharacter(hit.Parent) if player == nil then print("reward: player does not exist") else player.Character.Health = player.Character.Health - 5 wait(1) end end end)

`

0
Nope didnt work, it wouldnt even lower the players hp TheEmeraIdDev 22 — 5y

Answer this question