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
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
naknak
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
Supernapalm
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
m27frogy
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
slayer9365
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
myrco919
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
branefreez
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
ninga95
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
CloneTrooper787
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
raboy117
My first script *morph* Vote_lcapMy first script *morph* Voting_barMy first script *morph* Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
My first script *morph* EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
My first script *morph* EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
My first script *morph* EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
My first script *morph* EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
My first script *morph* EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
My first script *morph* EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
My first script *morph* EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
My first script *morph* EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
My first script *morph* EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
My first script *morph* EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
My first script *morph* EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
My first script *morph* EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
My first script *morph* EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
My first script *morph* EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
My first script *morph* EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
My first script *morph* EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
My first script *morph* EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
My first script *morph* EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
My first script *morph* EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
My first script *morph* EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 My first script *morph*

Go down 
2 posters
AuthorMessage
bmxracer23
Novice Scripter
Novice Scripter
bmxracer23


Posts : 20
Join date : 2010-11-13
Age : 27
Location : Reno Nevada

My first script *morph* Empty
PostSubject: My first script *morph*   My first script *morph* EmptyNovember 16th 2010, 5:33 am

char = game.Players.bmxracer23.Character

--Right arm

char["Right Arm"].Transparency=1

p2=Instance.new("Part")
p2.Size=Vector3.new(1,2,1)
p2.Parent=char
p2.BrickColor=BrickColor.new("Really black")
p2.Anchored= false
p2.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p2
m.Scale=Vector3.new(1.1,.8,1.1)


w=Instance.new("Weld")
w.Parent=char["Right Arm"]
w.Part1=w.Parent
w.Part0=p2
w.C0=CFrame.new(0,0,0)

char["Right Arm"].Transparency=1

p2=Instance.new("Part")
p2.Size=Vector3.new(0,0,0)
p2.Parent=char
p2.BrickColor=BrickColor.new("White")
p2.Anchored= false
p2.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p2
m.Scale=Vector3.new(1.2,.8,1.2)


w=Instance.new("Weld")
w.Parent=char["Right Arm"]
w.Part1=w.Parent
w.Part0=p2
w.C0=CFrame.new(0,0,0)
char = game.Players.bmxracer23.Character

--Left arm

char["Left Arm"].Transparency=1

p2=Instance.new("Part")
p2.Size=Vector3.new(1,2,1)
p2.Parent=char
p2.BrickColor=BrickColor.new("Really black")
p2.Anchored= false
p2.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p2
m.Scale=Vector3.new(1.1,.8,1.1)


w=Instance.new("Weld")
w.Parent=char["Left Arm"]
w.Part1=w.Parent
w.Part0=p2
w.C0=CFrame.new(0,0,0)

char["Left Arm"].Transparency=1

p2=Instance.new("Part")
p2.Size=Vector3.new(0,0,0)
p2.Parent=char
p2.BrickColor=BrickColor.new("White")
p2.Anchored= false
p2.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p2
m.Scale=Vector3.new(1.2,.8,1.2)


w=Instance.new("Weld")
w.Parent=char["Left Arm"]
w.Part1=w.Parent
w.Part0=p2
w.C0=CFrame.new(0,0,0)
--Torso

char["Torso"].Transparency=1

p4=Instance.new("Part")
p4.Size=Vector3.new(2,2,1)
p4.Parent=char
p4.BrickColor=BrickColor.new("Really black")
p4.Anchored= false
p4.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p4
m.Scale=Vector3.new(1.01,.8,1.01)

w=Instance.new("Weld")
w.Parent=char["Torso"]
w.Part1=w.Parent
w.Part0=p4
w.C0=CFrame.new(0,0,0)

char["Torso"].Transparency=1

p4=Instance.new("Part")
p4.Size=Vector3.new(1,1,1)
p4.Parent=char
p4.BrickColor=BrickColor.new("White")
p4.Anchored= false
p4.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p4
m.Scale=Vector3.new(1.2,.8,1.2)

w=Instance.new("Weld")
w.Parent=char["Torso"]
w.Part1=w.Parent
w.Part0=p4
w.C0=CFrame.new(0,0,0)
char["Right Leg"].Transparency=1

p5=Instance.new("Part")
p5.Size=Vector3.new(1,2,1)
p5.Parent=char
p5.BrickColor=BrickColor.new("Really black")
p5.Anchored= false
p5.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p5
m.Scale=Vector3.new(1.01,.9,1.01)

w=Instance.new("Weld")
w.Parent=char["Right Leg"]
w.Part1=w.Parent
w.Part0=p5
w.C0=CFrame.new(0,0,0)

char["Right Leg"].Transparency=1

p5=Instance.new("Part")
p5.Size=Vector3.new(1,0,0)
p5.Parent=char
p5.BrickColor=BrickColor.new("White")
p5.Anchored= false
p5.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p5
m.Scale=Vector3.new(1.2,.9,1.2)

w=Instance.new("Weld")
w.Parent=char["Right Leg"]
w.Part1=w.Parent
w.Part0=p5
w.C0=CFrame.new(0,0,0)


char["Left Leg"].Transparency=1

p5=Instance.new("Part")
p5.Size=Vector3.new(1,2,1)
p5.Parent=char
p5.BrickColor=BrickColor.new("Really black")
p5.Anchored= false
p5.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p5
m.Scale=Vector3.new(1.01,.9,1.01)

w=Instance.new("Weld")
w.Parent=char["Left Leg"]
w.Part1=w.Parent
w.Part0=p5
w.C0=CFrame.new(0,0,0)

char["Left Leg"].Transparency=1

p5=Instance.new("Part")
p5.Size=Vector3.new(1,0,0)
p5.Parent=char
p5.BrickColor=BrickColor.new("White")
p5.Anchored= false
p5.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p5
m.Scale=Vector3.new(1.2,.9,1.2)

w=Instance.new("Weld")
w.Parent=char["Left Leg"]
w.Part1=w.Parent
w.Part0=p5
w.C0=CFrame.new(0,0,0)
char["Right Leg"].Transparency=1

p5=Instance.new("Part")
p5.Size=Vector3.new(1,0,0)
p5.Parent=char
p5.BrickColor=BrickColor.new("White")
p5.Anchored= false
p5.CanCollide=false

m=Instance.new("BlockMesh")
m.Parent=p5
m.Scale=Vector3.new(1.2,.9,1.2)

w=Instance.new("Weld")
w.Parent=char["Left Leg"]
w.Part1=w.Parent
w.Part0=p5
w.C0=CFrame.new(0,0,0)
char["Head"].Transparency=1
char["Head"].face:Remove()
p15=Instance.new("Part")
p15.Size=Vector3.new(1,1,1)
p15.Parent=char
p15.BrickColor=BrickColor.new("White")
p15.Anchored= false
p15.CanCollide=false
p15TopSurface="Smooth"

m=Instance.new("SpecialMesh")
m.Parent=p15
m.Scale=Vector3.new(1,.1,1.1)
m.MeshType="Sphere"

w=Instance.new("Weld")
w.Parent=char["Right Arm"]
w.Part1=w.Parent
w.Part0=p15
w.C0=CFrame.new(0,-1,-.1)*CFrame.fromEulerAnglesXYZ(0,.2,0)

p16=Instance.new("Part")
p16.Size=Vector3.new(1,1,1)
p16.Parent=char
p16.BrickColor=BrickColor.new("White")
p16.Anchored= false
p16.CanCollide=false
p16.TopSurface="Smooth"

m=Instance.new("SpecialMesh")
m.Parent=p16
m.Scale=Vector3.new(1,.1,1.1)
m.MeshType="Sphere"

w=Instance.new("Weld")
w.Parent=char["Left Arm"]
w.Part1=w.Parent
w.Part0=p16
w.C0=CFrame.new(0,-1,-.1)*CFrame.fromEulerAnglesXYZ(0,-.2,0)
Back to top Go down
blueymaddog
Administrator
Administrator
blueymaddog


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

My first script *morph* Empty
PostSubject: Re: My first script *morph*   My first script *morph* EmptyJanuary 12th 2011, 9:12 pm

nice!
Back to top Go down
 
My first script *morph*
Back to top 
Page 1 of 1
 Similar topics
-
» [Morph Question]
» The Local Script: A Robloxian's Worst Nightmare
» C++ script
» Another C++ Script
» Script Help

Permissions in this forum:You cannot reply to topics in this forum
A Roblox Community :: Questions and Help :: Scripting-
Jump to: