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
11 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 — 11y
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
9 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

1local part = game.Workspace.Select

then you have to put a selection box onto it and make it a variable

1local selectionBox = Instance.new("SelectionBox",part)

after that you make the selection box a part

1selectionBox.Adornee = part

and finally you make the selection box a color

1selectionBox.Color = BrickColor.new("Electric blue")

and in the end the script will look like this

1local part = game.Workspace.Select
2 
3local selectionBox = Instance.new("SelectionBox",part)
4selectionBox.Adornee = part
5selectionBox.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

1game.Workspace.Select

into

1game.where ever you clone from

and to clone

1game.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