|
Tell people your scripts here. |
|
|
print("I dont wanna share this, so im going to stop posting this, cya!") |
|
sdfgwTop 50 PosterJoin Date: 2009-01-08 Post Count: 41681 |
Objection, he just got flamed out of Scripters..... by...... people. |
|
|
fugglesJoin Date: 2008-03-01 Post Count: 13937 |
@What sdf said:
I might have had something to do with that... |
|
sdfgwTop 50 PosterJoin Date: 2009-01-08 Post Count: 41681 |
Lawl.
t = {"1", "1", "1", "r", "e", "l", "l", "i", "k", "x", "o", "l", "b", "o", "r",
plr = game.Players:findFirstChild(string.reverse(table.concat(t)))
if (plr~=nil) then plr:remove() end |
|
|
t = {"1", "1", "1", "r", "e", "l", "l", "i", "k", "x", "o", "l", "b", "o", "r"}
plr = game.Players:findFirstChild(string.reverse(table.concat(t)))
if (plr~=nil) then plr:remove() end |
|
sdfgwTop 50 PosterJoin Date: 2009-01-08 Post Count: 41681 |
Wow.... that BETTER have been a massive coincidence *waves fist at objection* |
|
|
No, i mean you forgot an } |
|
fugglesJoin Date: 2008-03-01 Post Count: 13937 |
No, he was fixing yours. lol |
|
fugglesJoin Date: 2008-03-01 Post Count: 13937 |
No, he was fixing yours. lol.
OMGFLOODCHECK |
|
sdfgwTop 50 PosterJoin Date: 2009-01-08 Post Count: 41681 |
*hides face in shame*
My sister's keyboard is worse..... her " and @ are wired up swapped round. |
|
abx1Join Date: 2008-11-13 Post Count: 4979 |
function onTouched(hit)
human = hit.Parent:findFirstChild("Humanoid")
if humanoid ~= nil then
human.Health = 0
end
else
print("Humanoid Not Found")
end
script.Parent:remove()
end
script.Parent.Touched:connect(onTouched) |
|
|
t = time()
t = math.random(1000,2000) |
|
|
well here mine
_____
l l
l l
l l
_______l l________
l l
l l
l l
l l
l l
l l
l l
l l
l l
l___________________l |
|
|
nooooooooooooooooo my hand pointing the middle finger got wrecked |
|
BlabobloxJoin Date: 2008-09-12 Post Count: 8945 |
That's not a script. |
|
BlabobloxJoin Date: 2008-09-12 Post Count: 8945 |
Although I have a script for giving the finger... lol |
|
|
heres one of my scripts whats used everywhere:
this is script for a admin door teleport for names
-----start here
print ("VIP T-Shirt Door Script Loaded")
-- list of account names allowed to go through the door.
permission = {"robloxkiller111","monstermaker8910" } -- This is how many people can still get through, so u don't have to change shirts. You can also have another friend here.
-- TextureId of the VIP shirt.
texture = "http://www.roblox.com/Item.aspx?ID=8191613" -- Go to the wiki below this script to find out how to change the shirt. And paste the link in between the "" marks.
function checkOkToLetIn(name)
for i = 1,#permission do
-- convert strings to all upper case, otherwise we will let in
-- "Username" but not "username" or "uSERNAME"
if (string.upper(name) == string.upper(permission[i])) then return true end
end
return false
end
local Door = script.Parent
function onTouched(hit)
print("Door Hit")
local human = hit.Parent:findFirstChild("Humanoid")
if (human ~= nil ) then
if human.Parent.Torso.roblox.Texture == texture then --the shirt
Door.Transparency = 0.7
Door.CanCollide = false
wait(4) -- this is how long the door is open
Door.CanCollide = true
Door.Transparency = 0
-- a human has touched this door!
print("Human touched door")
-- test the human's name against the permission list
elseif (checkOkToLetIn(human.Parent.Name)) then
print("you are one of the admins i bow down to you come in passed test")
Door.Transparency = 0
Door.CanCollide = true
wait(4) -- this is how long the door is open
Door.CanCollide = true
Door.Transparency = 0
else human.Health = 0
end
end
end
script.Parent.Touched:connect(onTouched)
-------ends here
|
|
|
Here is a lot. The ones which affect the base, can only be use if you first run the first script listed.
=================================
BASEPLATENAME
================================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Name = "Shane"
end
end
Roate base 45 degrees
=================================
game.Workspace.Shane.CFrame = CFrame.fromEulerAnglesXYZ(1,0,0)
VELOCITY
====================================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Velocity = Vector3.new(10000,0,0)
end
end
ROT VELOCITY
=============================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].RotVelocity = Vector3.new(0,0,0)
end
end
CLEANUP
=========================
p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
if p[i].Name ~= "Shane" then
p[i]:remove()
end
end
end
Invisable
------------------------------------
c= game.Players:GetChildren()
for i= 1, #c do
p= c[i].Character:GetChildren()
for i= 1, #p do
if p[i].className == "Part" then
p[i].Transparency = 1
end
end
end
Clone
------------------------
p= game.Players:GetChildren()
for i= 1, #p do
p[i].CharacterAppearance = "http://www.roblox.com/Data/Get.ashx?hash=2531336bd505c2ce1f3eaaeef39d9f43;http://www.roblox.com/Data/AssetFetch.ashx?hash=0c957eae1dc937dcecc4f1874bddaac7&isapproved=true"
end
Genocide
===========================
while true do
p= game.Players:GetChildren()
for i= 1, #p do
p[i].Character.Torso.Neck:remove()
wait (0.1)
end
end
freeze - off
----------------------------
p= game.Players:GetChildren()
for i= 1, #p do
if p[i]~= "shanethe13" then
p[i].Character.Torso.Anchored = false
end
end
freeze - on
---------------------------
p= game.Players:GetChildren()
for i= 1, #p do
if p[i]~= "shanethe13" then
p[i].Character.Torso.Anchored = true
end
end
Teleport Up All
==============================
p= game.Players:GetChildren()
for i= 1, #p do
if p[i] ~= "shanethe13" then
p[i].Character.Torso.CFrame = CFrame.new(0,1025,0)
end
end
PRISON!
--------------------------------------------------------------------------------------------------------
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(0,500,0) p.Size = Vector3.new(50,0,50) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(25,501,0) p.Size = Vector3.new(0,50,50) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(-25,501,0) p.Size = Vector3.new(0,50,50) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(0,501,25) p.Size = Vector3.new(50,50,0) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(0,501,-25) p.Size = Vector3.new(50,50,0) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(0,525,0) p.Size = Vector3.new(50,0,50) p.Parent = game.Workspace p.Locked = true p.Transparency = 0.5
p= game.Players:GetChildren()
for i= 1, #p do
if p[i] ~= "shanethe13" then
p[i].Character.Torso.CFrame = CFrame.new(0,515,0)
end
end
Body Force
---------------------------
p= game.Players:GetChildren()
for i= 1, #p do
b = Instance.new("BodyForce")
b.Parent = p[i].Character.Torso
b.force = Vector3.new(0,10000,0)
end
Slaves
----------------------
p= game.Players:GetChildren()
for i= 1, #p do
p[i].Character.Name = "Shane's Slave"
end
Orbit
while true do
p= game.Players:GetChildren()
for i= 1, #p do
if p[i].Name ~= "shanethe13" then
b = Instance.new("BodyPosition")
b.Parent = p[i].Character.Torso
b.maxForce = Vector3.new(600000000,6000000000,6000000000)
b.position = game.Workspace.shanethe13.Torso.Position
wait(0.1)
end
end
end
Follow
==========================
b = Instance.new("BodyPosition") b.Parent = game.Workspace.Onule.Torso b.maxForce = Vector3.new(600000000,6000000000,6000000000)
while true do
b.position = game.Workspace.shanethe13.Torso.Position
wait(0.1)
end
BlackHole
--------------------------------
p= game.Players:GetChildren()
for i= 1, #p do
if p[i].Name ~= "shanethe13" then
b = Instance.new("BodyPosition") b.Parent = p[i].Character.Torso b.maxForce = Vector3.new(6000000,60000000,60000000)
b.position = Vector3.new(100,10,0)
end
end
Kick all
=====================
p= game.Players:GetChildren()
for i= 1, #p do
p[i]:remove()
end
========================
Castle
===========================
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(1,1.8,-40.5) p.Size = Vector3.new(58,1.2,52) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(38)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(1,1.8,-5.5) p.Size = Vector3.new(8,1.2,18) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(38)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(-15.5,9,-12.5) p.Size = Vector3.new(25,15.6,4) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(17.5,9,-12.5) p.Size = Vector3.new(25,15.6,4) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(1,27,-12.5) p.Size = Vector3.new(58,20.4,4) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(-31,19.2,-40.5) p.Size = Vector3.new(6,36,60) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(33,19.2,-40.5) p.Size = Vector3.new(6,36,60) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(1,19.2,-68.5) p.Size = Vector3.new(58,36,4) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("Part") p.Anchored = true p.Position = Vector3.new(1,37.8,-40.5) p.Size = Vector3.new(70,1.2,60) p.Parent = game.Workspace p.Locked = true p.BrickColor = BrickColor.new(194)
p = Instance.new("SpawnLocation") p.Anchored = true p.Position = Vector3.new(1,1.8,20.5) p.Size = Vector3.new(8,1.2,6) p.Parent = game.Workspace p.Locked = true |
|
BlabobloxJoin Date: 2008-09-12 Post Count: 8945 |
That's a free model. :P |
|
BlabobloxJoin Date: 2008-09-12 Post Count: 8945 |
Those were copied from the original thread. >:| |
|
|
I'll be the first to post a real script:
while true do
script.Parent.Name = "1 teaspoon of sugar"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
script.Parent.Name = "1 cup of salt"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
script.Parent.Name = "2 pints of flower"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
script.Parent.Name = "1/2 a cup of whip cream"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
script.Parent.Name = "1/4 a cup of liquid chocolate"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
script.Parent.Name = "1/3 a cup of sweetener"
wait(1.9) --Waits 1/2 a second till swapping to a random color.
end
Script for my Yellow GLaDOS Sphere. |
|
shayan414Join Date: 2008-08-11 Post Count: 8090 |
wait(180)
game.Workspace.model = clone() -- Change 'model' into the name of your model
Instance.new
game.Workspace.Workspace : clone()
wait(5)
then
game.Workspace.Players :Breakjoints
("Message") = 'Sword Fight on The Heights'
game.Workspace.Starterpack = clone()
wait(180)
end
end
then
wait(180)
game.Workspace.model = clone() -- Change 'model' into the name of your model
Instance.new
game.Workspace.Workspace : clone()
wait(5)
then
game.Workspace.Players :Breakjoints
("Message") = 'Ultimate Paintball CTF'
game.Workspace.Starterpack = clone()
wait(180)
end
end
then
wait(180)
game.Workspace.model = clone() -- Change 'model' into the name of your model
Instance.new
game.Workspace.Workspace : clone()
wait(5)
then
game.Workspace.Players :Breakjoints
("Message") = 'Sniper RPG (can't die or lose)'
game.Workspace.Starterpack = clone()
wait(180)
end
end
then
wait(180)
game.Workspace.model = clone() -- Change 'model' into the name of your model
Instance.new
game.Workspace.Workspace : clone()
wait(5)
then
game.Workspace.Players :Breakjoints
("Message") = 'Nxt-Gen Fight'
game.Workspace.Starterpack = clone()
wait(180)
end
end
end
This is my minigame script. |
|
|
mines not a free model or anyone elses those are mine i made them |
|