Skip to content

SEVENNINE404notfound/Roblox-Obby-Scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Roblox-Obby-Scripts

Lava Bricks

How to use

  1. Open Roblox Studio
  2. Insert the script into a part
  3. Run the game

local LavaBricks = game.Workspace:WaitForChild('Lava Bricks'):GetChildren()

for _, LavaBrick in LavaBricks do

LavaBrick.Touched:Connect(function(object)

	local potentialPlayer = game.Players:GetPlayerFromCharacter(object.Parent)

	if potentialPlayer then

		potentialPlayer.Character.Humanoid.Health = 0

	end
end)

end

About

Lava Bricks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors