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

How do code lava so when someone touches it, they fall?

Asked by 4 years ago
Edited 4 years ago

How do you make a trap code, because I only know how to make them die, will this help u answer :

1script.Parent.Touched:Connect(function(hit)
2local character = hit.Parent
3local human = character:FindFirstChild("Humanoid")
4local player = game.Players:GetPlayerFromCharacter(character)
5 
6if player and human.Health > 0  then
7human.Health = 0
8end
9end)
0
Put ALL of your code in a code block. Dovydas1118 1495 — 4y
0
Ok badimo3456p 114 — 4y
0
Ok badimo3456p 114 — 4y

2 answers

Log in to vote
2
Answered by 4 years ago

Humanoids have a sit property, which you can use to make the "Slip"

1script.Parent.Touched:Connect(function(hit)
2local character = hit.Parent
3local human = character:FindFirstChild("Humanoid")
4local player = game.Players:GetPlayerFromCharacter(character)
5 
6if player and human.Health > 0  then
7human.Sit = true
8end
9end

Should wok, if not, then I dunno lol.

Ad
Log in to vote
0
Answered by
goodlead -62
4 years ago

Put this code in the block! If this helps please consider giving this an accept and an upvote if helpful!

01--[[ I have included a breakdown of what each part does ]]--
02 
03local trapPart = script.Parent -- setting the name for the kill brick
04trapPart.CanCollide = false -- makes the killbrick hit-able
05 
06local function onPartTouch(otherPart) -- function that finds what touched the killbrick
07    local partParent = otherPart.Parent --finds the player
08    local humanoid = partParent:FindFirstChildWhichIsA("Humanoid") --finds the players health stats
09    if humanoid then
10        -- Set player's health to 0 aka killing them
11        humanoid.Health = 0
12    end
13end
14trapPart.Touched:Connect(onPartTouch)

Answer this question