Roblox Battle Royale Template Building System

Hello people! I have used the new Roblox Battle Royale Template and love the building system, but is there a way to use it in other games? I have tried this before, to no success. I would love all help and support.

2 Likes

What do you mean by this? You can copy and paste all the resources in the main game into your game, and that would work :slight_smile:

Documentation - Roblox Creator Hub

you can use the script that comes on the page comes a configuration of the construction system I’m not sure if it works for you

actually it doesn’t work Cheers :slight_smile:

1 Like

When I copy and paste it into my game it worked :confused:

Did you use a certain template? What parts did you copy and paste?

1 Like

Everything that was in the official game :stuck_out_tongue:

1 Like

Lol. Thanks. I was thinking you did it some other way but, lol.

1 Like

Someone know how to use the breaking system in other game? I dont want the building system

1 Like

you could use a Proximity Prompt, then use [PartName]:Destroy() to break. if you want to make a building system, insert UIS (UserInputService) in your game, then make an if statement that allows you to place a part down if you press a certain keybind, using Instance.new()

Ok thanks! Just a question what is the script for destroy part?

if -- does something worthy of building a part
  local Part = Instance.New("Part")
  Part.Parent = game.Workspace
  if -- does something worthy of destroying a part
      Part:Destroy()
  end
end
1 Like

Thanks a lot! It’s really helpful !