Hobbies And Interests
Home  >> Internet Games >> Online Games

How to Make a Mine Game on Roblox

"Roblox" is an online multiple-player game that allows players the ability to make up their own rules and even create various aspects of the game-playing environment, such as the landscape and characters. Advanced players use the Roblox Studio application to design these different aspects of the game. Through the scripting capability of the Roblox Studio application, you can create a number of different items to place into your personal "Roblox" game environment, such as land mines, to make the game a mine game.

Instructions

    • 1

      Double-click the Roblox Studio icon on your computer to launch the application.

    • 2

      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.

    • 3

      Drag-and-drop a desired brick onto the game stage window. Select the "Insert" option in the top menu and select the "Object" option.

    • 4

      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.

    • 5

      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.

    • 6

      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.


https://www.htfbw.com © Hobbies And Interests