How do you make a trap code, because I only know how to make them die, will this help u answer :
1 | script.Parent.Touched:Connect( function (hit) |
2 | local character = hit.Parent |
3 | local human = character:FindFirstChild( "Humanoid" ) |
4 | local player = game.Players:GetPlayerFromCharacter(character) |
5 |
6 | if player and human.Health > 0 then |
7 | human.Health = 0 |
8 | end |
9 | end ) |
Humanoids have a sit property, which you can use to make the "Slip"
1 | script.Parent.Touched:Connect( function (hit) |
2 | local character = hit.Parent |
3 | local human = character:FindFirstChild( "Humanoid" ) |
4 | local player = game.Players:GetPlayerFromCharacter(character) |
5 |
6 | if player and human.Health > 0 then |
7 | human.Sit = true |
8 | end |
9 | end |
Should wok, if not, then I dunno lol.
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 |
03 | local trapPart = script.Parent -- setting the name for the kill brick |
04 | trapPart.CanCollide = false -- makes the killbrick hit-able |
05 |
06 | local 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 |
13 | end |
14 | trapPart.Touched:Connect(onPartTouch) |