Kill Brick Script Roblox Studio
Kill Brick Script Roblox Studio
video: Coming Soon
steps:
Add a part into ur game
Add a script (not local script) into ur part.
Open the script and paste the script.
Try it out! When you touch the part you die.
(Tip: If you don't want the part to move when you touch it or fall then stop playing click on the part and click anchor on the top bar.)
Script:
script.Parent.Touched:Connect(function(hit)
local player = hit.Parent
local humanoid = player.Humanoid --CB
if humanoid then
humanoid.Health = 0
end
end)
-- script made by Content Bakery