generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
We use cookies to offer you a better experience. By using Roblox.com, you are agreeing to our Privacy and Cookie Policy.
   
ROBLOX Forum » Game Creation and Development » Scripting Helpers
Home Search
 

Re: POST UR GREATEST SCRIPTS HERE!!!!!

Previous Thread :: Next Thread 
wdyti is not online. wdyti
Joined: 09 Oct 2008
Total Posts: 9
29 Nov 2008 06:53 PM
i no we have one of these already...but it is a awsome post to make AND NO I DONT COPY i am not a noob and if i do copy i give credit to the maker of the script..POST THEM HERE!!!

ill give one of mive i guess i didnt make this

cloning machine

_G["scripts"] = {} _G["parents"] = {}
_G["Object1"] = Instance.new("Model")
_G["Object1"].Name = "Mach"
_G["Object1"].Parent = nil
_G["Object2"] = Instance.new("SpawnLocation")
_G["Object2"].Parent = _G["Object1"]
_G["Object2"].Position = Vector3.new(-10.5, 1, -0.5)
_G["Object2"].Anchored = true
_G["Object2"].formFactor = 2
_G["Object2"].CFrame = CFrame.new(-10.5, 1, -0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object2"].Size = Vector3.new(5, 0.400000006, 5)
_G["Object3"] = Instance.new("Model")
_G["Object3"].Name = "CloneMachine"
_G["Object3"].Parent = _G["Object1"]
_G["Object4"] = Instance.new("Part")
_G["Object4"].Parent = _G["Object3"]
_G["Object4"].Position = Vector3.new(-5.5, 9.30000019, -1)
_G["Object4"].Anchored = true
_G["Object4"].BottomSurface = 0
_G["Object4"].TopSurface = 0
_G["Object4"].formFactor = 0
_G["Object4"].BrickColor = BrickColor.new(208)
_G["Object4"].Transparency = 0.20000000298023
_G["Object4"].CFrame = CFrame.new(-5.5, 9.30000019, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object4"].Size = Vector3.new(4, 1, 1)
_G["Object5"] = Instance.new("Part")
_G["Object5"].Parent = _G["Object3"]
_G["Object5"].Position = Vector3.new(-5.5, 11.3000002, -1)
_G["Object5"].Anchored = true
_G["Object5"].BottomSurface = 0
_G["Object5"].TopSurface = 0
_G["Object5"].formFactor = 0
_G["Object5"].BrickColor = BrickColor.new(208)
_G["Object5"].Transparency = 0.20000000298023
_G["Object5"].CFrame = CFrame.new(-5.5, 11.3000002, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object5"].Size = Vector3.new(4, 1, 1)
_G["Object6"] = Instance.new("Part")
_G["Object6"].Name = "Cloner"
_G["Object6"].Parent = _G["Object3"]
_G["Object6"].Position = Vector3.new(0, 5.30000019, -1)
_G["Object6"].Anchored = true
_G["Object6"].CanCollide = false
_G["Object6"].BottomSurface = 0
_G["Object6"].TopSurface = 1
_G["Object6"].formFactor = 0
_G["Object6"].BrickColor = BrickColor.new(119)
_G["Object6"].Transparency = 0.20000000298023
_G["Object6"].CFrame = CFrame.new(0, 5.30000019, -1, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object6"].Size = Vector3.new(8, 7, 8)
_G["Object7"] = Instance.new("Script")
_G["Object7"].Parent = _G["Object6"]
_G["Object7"].Source = [[function Weld(x,y)
local W = Instance.new("Weld")
W.Part0 = x
W.Part1 = y
local CJ = CFrame.new(x.Position)
local C0 = x.CFrame:inverse()*CJ
local C1 = y.CFrame:inverse()*CJ
W.C0 = C0
W.C1 = C1
W.Parent = x
end

local D = false
function onTouch(hit)
if D == false then
D = true
if hit.Parent:findFirstChild("Humanoid") ~= nil then
if hit.Parent:findFirstChild("Humanoid").Health > 0 then
local P = hit.Parent:GetChildren()
local M = Instance.new("Model")
local H = Instance.new("Humanoid")
M.Parent = game.Workspace
M.Name = hit.Parent.Name
if hit.Parent:findFirstChild("Pants") ~= nil then
hit.Parent.Pants.Parent = M
end
if hit.Parent:findFirstChild("Shirt") ~= nil then
hit.Parent.Shirt.Parent = M
end
for i=1, #P do
if P[i].className == "Part" then
local C = P[i]:clone()
C.Parent = M
C.Locked = false
C.CanCollide = true
P[i]:remove()
end
if P[i].className == "Hat" then
P[i].Parent = M
end
end
M:MoveTo(Vector3.new(8, 6, -1))
M:MakeJoints()
local P = M:GetChildren()
for i=1, #P do
if P[i].Name ~= "Torso" and P[i].Name ~= "Pants" and P[i].Name ~= "Shirt" and P[i].className ~= "Hat" then
Weld(M.Torso,P[i])
end
if P[i].className == "Hat" then
Weld(M.Torso,P[i].Handle)
end
end
H.Parent = M
end
end
wait(2)
D = false
end
end

script.Parent.Touched:connect(onTouch)]]
table.insert(scripts,_G["Object7"]) table.insert(parents,_G["Object6"])
_G["Object8"] = Instance.new("Part")
_G["Object8"].Parent = _G["Object3"]
_G["Object8"].Position = Vector3.new(-0.5, 7.30000019, 3.5)
_G["Object8"].Anchored = true
_G["Object8"].formFactor = 0
_G["Object8"].BrickColor = BrickColor.new(208)
_G["Object8"].Transparency = 0.20000000298023
_G["Object8"].CFrame = CFrame.new(-0.5, 7.30000019, 3.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object8"].Size = Vector3.new(9, 9, 1)
_G["Object9"] = Instance.new("Part")
_G["Object9"].Parent = _G["Object3"]
_G["Object9"].Position = Vector3.new(-4.5, 7.30000019, -1.5)
_G["Object9"].Anchored = true
_G["Object9"].formFactor = 0
_G["Object9"].BrickColor = BrickColor.new(208)
_G["Object9"].Transparency = 0.20000000298023
_G["Object9"].CFrame = CFrame.new(-4.5, 7.30000019, -1.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object9"].Size = Vector3.new(9, 9, 1)
_G["Object10"] = Instance.new("Part")
_G["Object10"].Parent = _G["Object3"]
_G["Object10"].Position = Vector3.new(-5.5, 6.30000019, 1.5)
_G["Object10"].Anchored = true
_G["Object10"].formFactor = 0
_G["Object10"].BrickColor = BrickColor.new(208)
_G["Object10"].Transparency = 0.20000000298023
_G["Object10"].CFrame = CFrame.new(-5.5, 6.30000019, 1.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object10"].Size = Vector3.new(1, 11, 1)
_G["Object11"] = Instance.new("Part")
_G["Object11"].Parent = _G["Object3"]
_G["Object11"].Position = Vector3.new(-5.5, 7.30000019, -1)
_G["Object11"].Anchored = true
_G["Object11"].BottomSurface = 0
_G["Object11"].TopSurface = 0
_G["Object11"].formFactor = 0
_G["Object11"].BrickColor = BrickColor.new(208)
_G["Object11"].Transparency = 0.20000000298023
_G["Object11"].CFrame = CFrame.new(-5.5, 7.30000019, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object11"].Size = Vector3.new(4, 1, 1)
_G["Object12"] = Instance.new("Part")
_G["Object12"].Parent = _G["Object3"]
_G["Object12"].Position = Vector3.new(-0.5, 2.29999995, 3.5)
_G["Object12"].Anchored = true
_G["Object12"].formFactor = 0
_G["Object12"].BrickColor = BrickColor.new(192)
_G["Object12"].CFrame = CFrame.new(-0.5, 2.29999995, 3.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object12"].Size = Vector3.new(9, 1, 1)
_G["Object13"] = Instance.new("Part")
_G["Object13"].Parent = _G["Object3"]
_G["Object13"].Position = Vector3.new(0.5, 7.30000019, -5.5)
_G["Object13"].Anchored = true
_G["Object13"].formFactor = 0
_G["Object13"].BrickColor = BrickColor.new(208)
_G["Object13"].Transparency = 0.20000000298023
_G["Object13"].CFrame = CFrame.new(0.5, 7.30000019, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object13"].Size = Vector3.new(9, 9, 1)
_G["Object14"] = Instance.new("Part")
_G["Object14"].Parent = _G["Object3"]
_G["Object14"].Position = Vector3.new(-5.5, 5.30000019, -1)
_G["Object14"].Anchored = true
_G["Object14"].BottomSurface = 0
_G["Object14"].TopSurface = 0
_G["Object14"].formFactor = 0
_G["Object14"].BrickColor = BrickColor.new(208)
_G["Object14"].Transparency = 0.20000000298023
_G["Object14"].CFrame = CFrame.new(-5.5, 5.30000019, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object14"].Size = Vector3.new(4, 1, 1)
_G["Object15"] = Instance.new("Part")
_G["Object15"].Parent = _G["Object3"]
_G["Object15"].Position = Vector3.new(-4.5, 2.29999995, -1.5)
_G["Object15"].Anchored = true
_G["Object15"].formFactor = 0
_G["Object15"].BrickColor = BrickColor.new(192)
_G["Object15"].CFrame = CFrame.new(-4.5, 2.29999995, -1.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object15"].Size = Vector3.new(1, 1, 9)
_G["Object16"] = Instance.new("Part")
_G["Object16"].Parent = _G["Object3"]
_G["Object16"].Position = Vector3.new(4.5, 2.29999995, -0.5)
_G["Object16"].Anchored = true
_G["Object16"].formFactor = 0
_G["Object16"].BrickColor = BrickColor.new(192)
_G["Object16"].CFrame = CFrame.new(4.5, 2.29999995, -0.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object16"].Size = Vector3.new(9, 1, 1)
_G["Object17"] = Instance.new("Part")
_G["Object17"].Parent = _G["Object3"]
_G["Object17"].Position = Vector3.new(0, 1.30000007, -1)
_G["Object17"].Anchored = true
_G["Object17"].formFactor = 0
_G["Object17"].BrickColor = BrickColor.new(192)
_G["Object17"].CFrame = CFrame.new(0, 1.30000007, -1, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object17"].Size = Vector3.new(10, 1, 10)
_G["Object18"] = Instance.new("Part")
_G["Object18"].Parent = _G["Object3"]
_G["Object18"].Position = Vector3.new(4.5, 7.30000019, -0.5)
_G["Object18"].Anchored = true
_G["Object18"].formFactor = 0
_G["Object18"].BrickColor = BrickColor.new(208)
_G["Object18"].Transparency = 0.20000000298023
_G["Object18"].CFrame = CFrame.new(4.5, 7.30000019, -0.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object18"].Size = Vector3.new(9, 9, 1)
_G["Object19"] = Instance.new("Part")
_G["Object19"].Parent = _G["Object3"]
_G["Object19"].Position = Vector3.new(-5.5, 1.30000007, -1)
_G["Object19"].Anchored = true
_G["Object19"].BottomSurface = 0
_G["Object19"].TopSurface = 0
_G["Object19"].formFactor = 0
_G["Object19"].BrickColor = BrickColor.new(208)
_G["Object19"].Transparency = 0.20000000298023
_G["Object19"].CFrame = CFrame.new(-5.5, 1.30000007, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object19"].Size = Vector3.new(4, 1, 1)
_G["Object20"] = Instance.new("Part")
_G["Object20"].Parent = _G["Object3"]
_G["Object20"].Position = Vector3.new(-5.5, 3.29999995, -1)
_G["Object20"].Anchored = true
_G["Object20"].BottomSurface = 0
_G["Object20"].TopSurface = 0
_G["Object20"].formFactor = 0
_G["Object20"].BrickColor = BrickColor.new(208)
_G["Object20"].Transparency = 0.20000000298023
_G["Object20"].CFrame = CFrame.new(-5.5, 3.29999995, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object20"].Size = Vector3.new(4, 1, 1)
_G["Object21"] = Instance.new("Part")
_G["Object21"].Parent = _G["Object3"]
_G["Object21"].Position = Vector3.new(0.5, 2.29999995, -5.5)
_G["Object21"].Anchored = true
_G["Object21"].formFactor = 0
_G["Object21"].BrickColor = BrickColor.new(192)
_G["Object21"].CFrame = CFrame.new(0.5, 2.29999995, -5.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object21"].Size = Vector3.new(9, 1, 1)
_G["Object22"] = Instance.new("Part")
_G["Object22"].Parent = _G["Object3"]
_G["Object22"].Position = Vector3.new(3.5, 14.8000002, -1)
_G["Object22"].Anchored = true
_G["Object22"].BottomSurface = 0
_G["Object22"].TopSurface = 0
_G["Object22"].formFactor = 0
_G["Object22"].BrickColor = BrickColor.new(208)
_G["Object22"].Transparency = 0.20000000298023
_G["Object22"].CFrame = CFrame.new(3.5, 14.8000002, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object22"].Size = Vector3.new(2, 12, 1)
_G["Object23"] = Instance.new("Part")
_G["Object23"].Parent = _G["Object3"]
_G["Object23"].Position = Vector3.new(8, 16.3000011, 3.5)
_G["Object23"].Anchored = true
_G["Object23"].BottomSurface = 0
_G["Object23"].TopSurface = 0
_G["Object23"].formFactor = 0
_G["Object23"].BrickColor = BrickColor.new(208)
_G["Object23"].Transparency = 0.20000000298023
_G["Object23"].CFrame = CFrame.new(8, 16.3000011, 3.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object23"].Size = Vector3.new(1, 9, 6)
_G["Object24"] = Instance.new("Part")
_G["Object24"].Parent = _G["Object3"]
_G["Object24"].Position = Vector3.new(10.5, 16.3000011, -1)
_G["Object24"].Anchored = true
_G["Object24"].BottomSurface = 0
_G["Object24"].TopSurface = 0
_G["Object24"].formFactor = 0
_G["Object24"].BrickColor = BrickColor.new(208)
_G["Object24"].Transparency = 0.20000000298023
_G["Object24"].CFrame = CFrame.new(10.5, 16.3000011, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object24"].Size = Vector3.new(8, 9, 1)
_G["Object25"] = Instance.new("Part")
_G["Object25"].Parent = _G["Object3"]
_G["Object25"].Position = Vector3.new(8, 16.3000011, -5.5)
_G["Object25"].Anchored = true
_G["Object25"].BottomSurface = 0
_G["Object25"].TopSurface = 0
_G["Object25"].formFactor = 0
_G["Object25"].BrickColor = BrickColor.new(208)
_G["Object25"].Transparency = 0.20000000298023
_G["Object25"].CFrame = CFrame.new(8, 16.3000011, -5.5, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object25"].Size = Vector3.new(1, 9, 6)
_G["Object26"] = Instance.new("Part")
_G["Object26"].Parent = _G["Object3"]
_G["Object26"].Position = Vector3.new(5.5, 16.3000011, -1)
_G["Object26"].Anchored = true
_G["Object26"].BottomSurface = 0
_G["Object26"].TopSurface = 0
_G["Object26"].formFactor = 0
_G["Object26"].BrickColor = BrickColor.new(208)
_G["Object26"].Transparency = 0.20000000298023
_G["Object26"].CFrame = CFrame.new(5.5, 16.3000011, -1, -1, 0, -0, -0, 1, -0, -0, 0, -1)
_G["Object26"].Size = Vector3.new(1, 9, 8)
_G["Object27"] = Instance.new("Part")
_G["Object27"].Parent = _G["Object3"]
_G["Object27"].Position = Vector3.new(8, 21.3000011, -1)
_G["Object27"].Anchored = true
_G["Object27"].BottomSurface = 0
_G["Object27"].TopSurface = 0
_G["Object27"].formFactor = 0
_G["Object27"].BrickColor = BrickColor.new(208)
_G["Object27"].Transparency = 0.20000000298023
_G["Object27"].CFrame = CFrame.new(8, 21.3000011, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object27"].Size = Vector3.new(10, 1, 6)
_G["Object28"] = Instance.new("Part")
_G["Object28"].Parent = _G["Object3"]
_G["Object28"].Position = Vector3.new(4, 21.3000011, -1)
_G["Object28"].Anchored = true
_G["Object28"].BottomSurface = 0
_G["Object28"].TopSurface = 0
_G["Object28"].formFactor = 0
_G["Object28"].BrickColor = BrickColor.new(208)
_G["Object28"].Transparency = 0.20000000298023
_G["Object28"].CFrame = CFrame.new(4, 21.3000011, -1, -0, 0, 1, -0, 1, 0, -1, 0, 0)
_G["Object28"].Size = Vector3.new(2, 1, 2)
_G["Object29"] = Instance.new("Part")
_G["Object29"].Parent = _G["Object3"]
_G["Object29"].Position = Vector3.new(10.5, 6.30000019, 3.5)
_G["Object29"].Anchored = true
_G["Object29"].CanCollide = false
_G["Object29"].BottomSurface = 0
_G["Object29"].TopSurface = 0
_G["Object29"].formFactor = 0
_G["Object29"].BrickColor = BrickColor.new(208)
_G["Object29"].Transparency = 0.20000000298023
_G["Object29"].CFrame = CFrame.new(10.5, 6.30000019, 3.5, -1, 0, -0, -0, 1, -0, -0, 0, -1)
_G["Object29"].Size = Vector3.new(1, 11, 1)
_G["Object30"] = Instance.new("Part")
_G["Object30"].Parent = _G["Object3"]
_G["Object30"].Position = Vector3.new(10.5, 6.30000019, -5.5)
_G["Object30"].Anchored = true
_G["Object30"].CanCollide = false
_G["Object30"].BottomSurface = 0
_G["Object30"].TopSurface = 0
_G["Object30"].formFactor = 0
_G["Object30"].BrickColor = BrickColor.new(208)
_G["Object30"].Transparency = 0.20000000298023
_G["Object30"].CFrame = CFrame.new(10.5, 6.30000019, -5.5, -1, 0, -0, -0, 1, -0, -0, 0, -1)
_G["Object30"].Size = Vector3.new(1, 11, 1)
_G["Object31"] = Instance.new("Part")
_G["Object31"].Parent = _G["Object1"]
_G["Object31"].Position = Vector3.new(0.5, 0.600000024, 0.5)
_G["Object31"].Anchored = true
_G["Object31"].formFactor = 2
_G["Object31"].BrickColor = BrickColor.new(192)
_G["Object31"].CFrame = CFrame.new(0.5, 0.600000024, 0.5, 1, 0, 0, 0, 1, 0, 0, 0, 1)
_G["Object31"].Size = Vector3.new(39, 0.400000006, 43)
_G["Object1"].Parent = game.Workspace _G["Object1"]:MakeJoints()
c = _G["scripts"] for i = 1, #c do c[i].Parent = _G["parents"][i] end
Report Abuse
wdyti is not online. wdyti
Joined: 09 Oct 2008
Total Posts: 9
29 Nov 2008 06:56 PM
r u 4 real no body wanna post
Report Abuse
wdyti is not online. wdyti
Joined: 09 Oct 2008
Total Posts: 9
29 Nov 2008 06:56 PM
cmon ppl lets get some scripts in this forum WOOT!
Report Abuse
skateboarderdude is not online. skateboarderdude
Joined: 16 Jul 2008
Total Posts: 10861
29 Nov 2008 06:57 PM
You did not create that script. You probaly stole it from somebody.
Report Abuse
skateboarderdude is not online. skateboarderdude
Joined: 16 Jul 2008
Total Posts: 10861
29 Nov 2008 06:57 PM
You just want people to post scripts so you can steal them.
Report Abuse
wdyti is not online. wdyti
Joined: 09 Oct 2008
Total Posts: 9
29 Nov 2008 06:59 PM
read wat i said i said "i didnt make this script and i dont copy cuz im not a noob and if a i do copy i give credit to the maker of the script"
Report Abuse
UniAHaircut is not online. UniAHaircut
Joined: 18 Nov 2007
Total Posts: 997
29 Nov 2008 07:46 PM
So give credit to the creator of that script :P
Report Abuse
wdyte is not online. wdyte
Joined: 03 Oct 2008
Total Posts: 89
29 Nov 2008 08:21 PM
well i forgot who made it but nice script and thx
Report Abuse
wdyte is not online. wdyte
Joined: 03 Oct 2008
Total Posts: 89
29 Nov 2008 08:22 PM
o srry this is my other account
Report Abuse
Robertoman is not online. Robertoman
Joined: 10 May 2007
Total Posts: 6369
29 Nov 2008 08:25 PM
Epic simpleness:


function ope(p)
local m=Instance.new("Message")
m.Parent=workspace
m.Text=p.Name.." has entered."
end
function opl(p)
local m=Instance.new("Message")
m.Parent=workspace
m.Text=p.Name.." has left."
end
game.Players.ChildAdded:connect(ope)
game.Players.ChildRemoved:connect(opl)
Report Abuse
Robertoman is not online. Robertoman
Joined: 10 May 2007
Total Posts: 6369
29 Nov 2008 08:26 PM
Eh, forgot to remove the message. :-P


function ope(p)
local m=Instance.new("Message")
m.Parent=workspace
m.Text=p.Name.." has entered."
wait(5)
m:remove()
end
function opl(p)
local m=Instance.new("Message")
m.Parent=workspace
m.Text=p.Name.." has left."
wait(5)
m:remove()
end
game.Players.ChildAdded:connect(ope)
game.Players.ChildRemoved:connect(opl)
Report Abuse
wdyte is not online. wdyte
Joined: 03 Oct 2008
Total Posts: 89
29 Nov 2008 08:46 PM
lol
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image