A Roblox Community
Would you like to react to this message? Create an account in a few clicks or log in to continue.

A Roblox Community

A community of Robloxians who want to learn to script and build on Roblox Studio.
 
HomeLatest imagesRegisterLog in
If you're a experienced coder make some tutorials! It would really help the site grow.
Make sure you read the rules(Which can be found by clicking here)
If you're a beginner at coding, try some tutorials.
We have many Moderators/Admins watching this site. Contact them with Questions.
Let us know what your favorite sport is. By clicking here to vote (Click here)
This site is becoming inactive. Lets make it active.
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Top posters
blueymaddog
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
naknak
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
Supernapalm
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
m27frogy
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
slayer9365
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
myrco919
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
branefreez
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
ninga95
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
CloneTrooper787
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
raboy117
Basic use of Clone() Vote_lcapBasic use of Clone() Voting_barBasic use of Clone() Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Basic use of Clone() EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Basic use of Clone() EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Basic use of Clone() EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Basic use of Clone() EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Basic use of Clone() EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Basic use of Clone() EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Basic use of Clone() EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Basic use of Clone() EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Basic use of Clone() EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Basic use of Clone() EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Basic use of Clone() EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Basic use of Clone() EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Basic use of Clone() EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Basic use of Clone() EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Basic use of Clone() EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Basic use of Clone() EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Basic use of Clone() EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Basic use of Clone() EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Basic use of Clone() EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Basic use of Clone() EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Basic use of Clone()

Go down 
2 posters
AuthorMessage
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Basic use of Clone() Empty
PostSubject: Basic use of Clone()   Basic use of Clone() EmptyNovember 27th 2010, 5:50 pm

The Roblox function "Clone()" is a very valuable function. It can make copies of anything you want it to. Like if I wanted to create a certain brick multiple times, I could use this:
Code:

new_brick = Workspace.Brickname:Clone


This creates a piece for us to use. It's parent is nil, so we must put it inside of the Workspace.

Code:

new-brick.Parent = Workspace


Now we have our copy visible. We can edit the brick to suit our needs now.

Code:

new_brick.Position = Vector3.new(1,1,1)
new_brick.Name = "My new brick"
new_brick.Anchored = true


Back to top Go down
Guest
Guest
avatar



Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 4:53 pm

but wait a minute... what is new_brick? is it just a command you made up? or is it actually an alternative to the function :Clone()?
Back to top Go down
Guest
Guest
avatar



Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 4:54 pm

dont answer this lol... your making it sound like your writing C...
Back to top Go down
Guest
Guest
avatar



Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 4:54 pm

just saying
Back to top Go down
naknak
Administrator
Administrator
naknak


Posts : 878
Join date : 2010-07-30

Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 5:14 pm

The first thing I wrote: new_brick = Workspace.Brickname:Clone



Its a variable
Back to top Go down
Guest
Guest
avatar



Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 5:20 pm

i know but why not just do

Code:
 create = Workspace.Brickname:Clone

your making it sound like your writing C...
Back to top Go down
Guest
Guest
avatar



Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 17th 2011, 5:20 pm

i usually reserve the _ character for dummy variables
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


Posts : 1081
Join date : 2010-12-09
Age : 26

Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() EmptyJanuary 18th 2011, 7:44 am

u forgot da '()' it's :Clone() not :Clone. and new-brick should be new_brick. Nice tutorial apart from the typo's
Back to top Go down
Sponsored content





Basic use of Clone() Empty
PostSubject: Re: Basic use of Clone()   Basic use of Clone() Empty

Back to top Go down
 
Basic use of Clone()
Back to top 
Page 1 of 1

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Tutorials and Resources :: Beginner-
Jump to: