dilJoin Date: 2007-10-12 Post Count: 4433 |
im going to do the camp fire one in mah (free models) script buidler |
|
|
function onChat(msg)
msg = string.reverse(msg)
local s = Instance.new("Message")
s.Parent = workspace
s.Text = msg
end
game.Players.NAME.Chatted:connect(onChat)
-C79 |
|
|
I know, i'm creative with scripting :3
-C79 |
|
AdamnetJoin Date: 2007-10-08 Post Count: 7673 |
Make the whole place explode
m = Instance.new("Message")
m.Parent = game.Workspace
m.Text = "adamnet:Oh Hai Im Just GOnna Blow The World Up!"
wait(3)
m.Text = "5"
wait(1)
m.Text = "4"
wait(1)
m.Text = "3"
wait(1)
m.Text = "2"
wait(1)
m.Text = "1"
wait(1)
m.Text = "BOOOOOOOOOOOOOOOOOOOM!"
e = Instance.new("Explosion")
e.Parent = game.Workspace
e.BlastPressure = 500000
e.BlastRadius = 10000000000
wait(1)
Remove(m) |
|
Lopy34hJoin Date: 2007-12-13 Post Count: 1193 |
When I was new at scripting I only new knew vector3 not CFrame and tried this to teleport me:
me = game.Workspace.YourName
me.Torso.Position = Vector3.new(0, 10000, 0)
But all it did was teleport my torso, and only my torso so I died.
I regret using Vector3 so much. |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
m = Instance.new("Message")
m.Parent = game.Workspace
m.Text = "LEIK OMGZ I LIKEZ PIE SONGZ!!!11one!!1one!11"
wait(3)
m.Text = "5"
wait(1)
m.Text = "4"
wait(1)
m.Text = "3"
wait(1)
m.Text = "2"
wait(1)
m.Text = "1"
wait(1)
m.Text = "The"
wait(1)
m.Text = "P"
wait(0.1)
m.Text = "I"
wait(0.1)
m.Text = "E"
wait(0.1)
m.Text = "S"
wait(1)
m.Text = "O"
wait(0.1)
m.Text = "N"
wait(0.1)
m.Text = "G"
wait(0.1)
m.Text = "Song"
wait(1)
m.Text = "and if you think we cant sing it faster than your wrong"
wait(1)
m.Text = "but it'll help if you just sing along....."
wait(1)
m.Text = "LA LA LA LA"
wait(0.1)
m.Text = "I"
wait(1)
m.Text = "LIKE"
wait(0.1)
m.Text = "PIE"
wait(0.1)
m.Text = "YUMMY"
wait(0.1)
m.Text = "YUMMY"
wait(1)
m.Text = "PIE"
wait(0.1)
m.Text = "LA LA LA LA"
wait(0.1)
m.Text = "PIE"
wait(0.1)
m.Text = "IS"
wait(0.1)
m.Text = "GOOD"
wait(0.1)
m.Text = "P"
wait(0.1)
m.Text = "I"
wait(0.1)
m.Text = "E"
wait(0.1)
m.Text = "Song"
wait(1)
Remove(m) |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
commander can you teach me basic scripting? |
|
|
People gotta pay meh :3 (Usually 200-400 tickets a lesson :P)
-C79 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
=P nvm then....i only have 62 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
cuase the wiki doesnt seem to help me.... |
|
|
Lol... Random player gets banned XD
local click = Instance.new("ClickDetector")
click.Parent = workspace.NAME.Head
function click()
P = game.Players:GetChildren()
for i=1, 1 do
math.random(1, #P)
p[i]:Remove()
end
end
game.Workspace.NAME.Head.ClickDetector.MouseClick:connect(click)
-C79 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
commander wanna test these at script builder? |
|
|
thx for the scripts im still learning how to use so ill most likly have to start learning how to on my own ... i just had a little lesson with scripttester123 and already forgot it XP no im not his friend he just came in when i was there lol |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
i have clocky script! >:D |
|
bucket64Join Date: 2008-04-26 Post Count: 534 |
ok, i think i will show my commnds script version public and script builder
--[[
onwer = "bucket64"
s = Instance.new("Sound")
s.Parent = game.Workspace
s.Name = "CBGMusic"
s.Looped = true
s.Volume = 0.6
s.SoundId = "nope"
function commands(str, speaker)
if string.sub(str,1,6) == "shout/" then
m = Instance.new("Message")
m.Parent = game.Workspace
m.Text = string.sub(str, 7)
wait(5)
m.Parent = nil
elseif string.sub(str,1,5) == "hint/" then
h = Instance.new("Hint")
h.Parent = game.Workspace
h.Text = string.sub(str, 6)
wait(5)
h.Parent = nil
elseif string.sub(str,1,5) == "kill/" then
if string.sub(str, 6) == "all" then
kt = game.Players:GetChildren()
for i = 1, #kt do
if kt[i].Name ~= onwer and kt[i].Name ~= speaker.Name then
kt[i].Character.Humanoid.Health = 0
end
end
end
ptk = game.Players:FindFirstChild(string.sub(str, 6))
if ptk~=nil and ptk.Name ~= onwer then
ptk.Character.Humanoid.Health = 0
end
elseif string.sub(str,1,4) == "sit/" then
if string.sub(str, 5) == "all" then
st = game.Players:GetChildren()
for i = 1, #st do
if st[i].Name ~= onwer and st[i].Name ~= speaker.Name then
st[i].Character.Humanoid.Sit = true
end
end
end
pts = game.Players:FindFirstChild(string.sub(str, 5))
if pts~=nil and pts.Name ~= onwer then
pts.Character.Humanoid.Sit = true
end
elseif string.sub(str,1,7) == "freeze/" then
if string.sub(str, 8) == "all" then
ft = game.Players:GetChildren()
for i = 1, #ft do
if ft[i].Name ~= onwer and ft[i].Name ~= speaker.Name then
ft[i].Character.Torso.Anchored = true
end
end
end
ptf = game.Players:FindFirstChild(string.sub(str, 8))
if ptf~=nil and ptf.Name ~= onwer then
ptf.Character.Torso.Anchored = true
end
elseif string.sub(str,1,5) == "thaw/" then
if string.sub(str, 6) == "all" then
tt = game.Players:GetChildren()
for i = 1, #tt do
if tt[i].Name ~= onwer and tt[i].Name ~= speaker.Name then
tt[i].Character.Torso.Anchored = false
end
end
end
ptt = game.Players:FindFirstChild(string.sub(str, 6))
if ptt~=nil and ptt.Name ~= onwer then
ptt.Character.Torso.Anchored = false
end
elseif string.sub(str,1,6) == "music/" then
if string.sub(str, 7) == "1" then
s.SoundId = "http://www.roblox.com/asset/?id=2303479"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Caramell Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "2" then
s.SoundId = "1dd23a446c8f8bead7d9f813ba99cf5c"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Waffes Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "3" then
s.SoundId = "http://www.roblox.com/asset/?id=1372259"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Fire Emblem Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "4" then
s.SoundId = "http://www.roblox.com/asset/?id=1034065"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Halo Theme Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "5" then
s.SoundId = "http://www.roblox.com/asset/?id=1015394"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Wind Of Fjords Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "6" then
s.SoundId = "http://www.roblox.com/asset/?id=1077604"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "M.U.L.E Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) == "7" then
s.SoundId = "f738cefbd7da3b8dbda6a034800b3dea"
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Scatman Selected"
wait(2)
m:remove()
elseif string.sub(str, 7) =="play" then
s:play()
elseif string.sub(str, 7) == "stop" then
s:stop()
elseif string.sub(str, 7) == "pause" then
s:pause()
elseif string.sub(str, 7) == "+" then
s.Volume = s.Volume + 0.2
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Volume at "..s.Volume..""
wait(2)
m:remove()
elseif string.sub(str, 7) == "-" then
s.Volume = s.Volume - 0.2
m = Instance.new("Message")
m.Parent = speaker
m.Text = "Volume at "..s.Volume..""
wait(2)
m:remove()
end
end
end |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
bump! =D |
|
|
Uhhhhh....
you = game.Workspace.NAME.Humanoid
while true do
wait()
you.Sit = true
wait()
you.Jump = true
end
XD
-C79 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
lol, commander can you please test them with me? |
|
|
Sorry, i don't feel like script building right now `_`
-C79 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
ok, it was funny i did campfire and my friend made a rain storm and a tornado! xD |
|
|
Lol... I can make a tornado T.T
-C79 |
|
dilJoin Date: 2007-10-12 Post Count: 4433 |
bump! any more?? |
|
Insider55Join Date: 2008-05-18 Post Count: 107 |
Make your health bar all red and really, really long-
game.Workspace.YOURNAME.Humanoid.Health = -2
I just stumbled across this. =P
Tell me if it doesn't wortk. It should, but you know... Those typographical errors...
-Insider |
|
freefurbieTop 100 PosterJoin Date: 2008-01-07 Post Count: 9314 |
I don't feel like sharing my Hat Script :3 but...
local 5 = game.Workspace.freefurbie
5.Head.Transparency = 1
5.Torso.Transparency = 1
5["Left Arm"].Transparency = 1
5["Right Arm"].Transparency = 1
5["Left Leg"].Transparency = 1
5["Right Leg"].Transparency = 1
5.Head.face:remove()
5.Torso.roblox:remove()
5.Name = " "
Oooh a ghost script! Change freefurbie to dil =P |
|
Insider55Join Date: 2008-05-18 Post Count: 107 |
Then again, it could always be something like...
game.Workspace.NAME.Humanoid.MaxHealth = -2
Yeah, I think that's it.
Yes, I just tested it. Lol, it IS it!!!! |
|