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
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
naknak
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
Supernapalm
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
m27frogy
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
slayer9365
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
myrco919
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
branefreez
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
ninga95
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
CloneTrooper787
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
raboy117
Admin Chest Plate Giver Vote_lcapAdmin Chest Plate Giver Voting_barAdmin Chest Plate Giver Vote_rcap 
Top posting users this month
No user
Latest topics
» Where to go from here.
Admin Chest Plate Giver EmptySeptember 14th 2020, 1:20 pm by MrNicNac

» Send me an Email
Admin Chest Plate Giver EmptySeptember 14th 2020, 1:16 pm by MrNicNac

» [v1.6.0.0] Lua Script Obfuscator [No Bytecode]
Admin Chest Plate Giver EmptyJuly 6th 2015, 7:38 pm by m27frogy

» New Site Possibly
Admin Chest Plate Giver EmptyJuly 6th 2015, 4:16 pm by m27frogy

» Ambassador!
Admin Chest Plate Giver EmptyApril 15th 2015, 11:40 pm by naknak

» Boop - Tag
Admin Chest Plate Giver EmptyApril 13th 2015, 9:46 pm by naknak

» Vip Class Script
Admin Chest Plate Giver EmptyApril 13th 2015, 4:54 pm by naknak

» Who's active?!
Admin Chest Plate Giver EmptyApril 13th 2015, 4:52 pm by naknak

» Genesis Point
Admin Chest Plate Giver EmptyJuly 17th 2014, 7:04 pm by branefreez

» Reward System
Admin Chest Plate Giver EmptyJuly 17th 2014, 5:41 am by m27frogy

» Script Request
Admin Chest Plate Giver EmptyJuly 10th 2014, 11:43 am by naknak

» local scripts?
Admin Chest Plate Giver EmptyJuly 10th 2014, 11:39 am by naknak

» Project: Reconstruction [Died]
Admin Chest Plate Giver EmptyJuly 10th 2014, 11:36 am by naknak

» Hi. I am new here
Admin Chest Plate Giver EmptyApril 26th 2014, 4:01 pm by altshiftkey

» What's your favorite sport?
Admin Chest Plate Giver EmptyJanuary 1st 2014, 2:13 pm by m27frogy

» FlashLight Script
Admin Chest Plate Giver EmptyJanuary 1st 2014, 2:11 pm by m27frogy

» Gun Making! [READ DESC]
Admin Chest Plate Giver EmptyJanuary 1st 2014, 2:10 pm by m27frogy

» Hi, I am new here!
Admin Chest Plate Giver EmptyNovember 26th 2013, 3:33 pm by Keanu73

» Improve Coding
Admin Chest Plate Giver EmptyOctober 26th 2013, 1:12 pm by pook03

» Simple Button
Admin Chest Plate Giver EmptySeptember 1st 2013, 6:19 pm by branefreez


 

 Admin Chest Plate Giver

Go down 
AuthorMessage
recnic
Novice Scripter
Novice Scripter
recnic


Posts : 2
Join date : 2013-06-20

Admin Chest Plate Giver Empty
PostSubject: Admin Chest Plate Giver   Admin Chest Plate Giver EmptyJune 20th 2013, 7:18 am

Code:
-- admin only chestplate giver
-- dont stand on the block for too long, it will cause lots of lag
-- inspired by Builderboy202
-- edited by recnic

admin = "Player1" -- place admin name here
char = game:GetService("Players")[admin].Character

local function hit()
   chest = Instance.new("Part")
   chest.Position = Vector3.new(5, 5, 5)
   chest.Parent = char
   chest.Size = Vector3.new(2,2,1)
   chest.BrickColor = BrickColor.new("Dark stone grey")
   chestmesh = Instance.new("BlockMesh")
   chestmesh.Parent = chest
   chestmesh.Scale = Vector3.new(1.1,1,1.1)
   shrw = Instance.new("Weld")
   shrw.Parent = chest
   shrw.Part0 = chest
   shrw.Part1 = char.Torso
   arm = Instance.new("Part")
   arm.Parent = char
   arm.Position = Vector3.new(5, 5, 5)
   arm.BrickColor = BrickColor.new("Dark stone grey")
   arm.Size = Vector3.new(1,1,1)
   armmesh = Instance.new("BlockMesh")
   armmesh.Parent = arm
   armmesh.Scale = Vector3.new(1.1,0.5,1.1)
   fsw = Instance.new("Weld")
   fsw.Parent = arm
   fsw.Part0 = arm
   fsw.Part1 = char["Left Arm"]
   fsw.C1 = CFrame.new(0,0.8,0)
   leftarm = Instance.new("Part")
   leftarm.Parent = char
   leftarm.Position = Vector3.new(5, 5, 5)
   leftarm.BrickColor = BrickColor.new("Dark stone grey")
   leftarm.Size = Vector3.new(1,1,1)
   leftarmmesh = Instance.new("BlockMesh")
   leftarmmesh.Parent = leftarm
   leftarmmesh.Scale = Vector3.new(1.1,0.5,1.1)
   ssw = Instance.new("Weld")
   ssw.Parent = leftarm
   ssw.Part1 = char["Right Arm"]
   ssw.Part0 = leftarm
   ssw.C1 = CFrame.new(0,0.8,0)
end
script.Parent.Touched:connect(hit)
Back to top Go down
 
Admin Chest Plate Giver
Back to top 
Page 1 of 1
 Similar topics
-
» Admin only GUI?
» admin commands NEED HELP
» Becoming an admin/a moderator.
» Admin/GUI Doors
» Admin commands

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