Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How do you make a tool that Clones a model From Replicated Stroge, on a 4 X 4 Axis?

Asked by
Hybric 271 Moderation Voter
10 years ago

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

0
You need to make some code so we can help you! Teeter11 281 — 10y
0
I suggest you copy the default Roblox stamper and base your new tool on that. Marios2 360 — 9y

1 answer

Log in to vote
0
Answered by
qwrn12 85
8 years ago

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

Ad

Answer this question