Instructions
Double-click the Roblox Studio icon on your computer to launch the application.
Enter "Bricks" into the search box in the "Explorer" panel. A listing of brick icons will appear in the Explorer panel. Then click on the brick in the sage to select it.
Drag-and-drop a desired brick onto the game stage window. Select the "Insert" option in the top menu and select the "Object" option.
Select the "Script" option from the pop-up window, then click the "Script" link that appears in the Explorer window to open the Script editing window.
Delete any script that appears in the scripting editing window. Then enter the following into the window:
"print("LandMine Script Loaded")
LandMine = script.Parent
function onTouched(hit)
explosion = Instance.new("Explosion")
explosion.BlastRadius = 12
explosion.BlastPressure = 1000000
explosion.Position = script.Parent.Position
explosion.Parent = game.Workspace
script.Parent.Transparency = 1
connection:disconnect()
end
connection = LandMine.Touched:connect(onTouched)"
Click the "OK" button.
Drag-and-drop as many bricks you want to make into mines into different locations on the game stage, then repeat the script editing process for each.