I'm doing this because i'm putting ridiculous questions out in there so
First you insert a part
into workspace
next you rename that part
Select
or whatever you want
then you make a variable to find the part
1 | local part = game.Workspace.Select |
then you have to put a selection box onto it and make it a variable
1 | local selectionBox = Instance.new( "SelectionBox" ,part) |
after that you make the selection box a part
1 | selectionBox.Adornee = part |
and finally you make the selection box a color
1 | selectionBox.Color = BrickColor.new( "Electric blue" ) |
and in the end the script will look like this
1 | local part = game.Workspace.Select |
3 | local selectionBox = Instance.new( "SelectionBox" ,part) |
4 | selectionBox.Adornee = part |
5 | selectionBox.Color = BrickColor.new( "Electric blue" ) |
but i never showed you how to do that but with a clone i just showed you how to make the selection box
to clone you put the part
into wherever you want to clone it from and you change the
into
1 | game.where ever you clone from |
and to clone
1 | game.where ever you clone from.Select.parent:Clone = game.wheretoclone.wheretoclone howmany times it takes |
add that into a tool with some more script and it should work