I am trying to make like a tool that clones a model from ReplicatedStorage. It will clone from that and clone into workspace, but it has a 4 x 4 Axis wit a Selection Box Square
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
local part = game.Workspace.Select
then you have to put a selection box onto it and make it a variable
local selectionBox = Instance.new("SelectionBox",part)
after that you make the selection box a part
selectionBox.Adornee = part
and finally you make the selection box a color
selectionBox.Color = BrickColor.new("Electric blue")
and in the end the script will look like this
local part = game.Workspace.Select local selectionBox = Instance.new("SelectionBox",part) selectionBox.Adornee = part 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
game.Workspace.Select
into
game.where ever you clone from
and to clone
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