SFAynjelJoin Date: 2008-02-23 Post Count: 676 |
i dont know much lol |
|
RathgarfJoin Date: 2007-05-28 Post Count: 1245 |
I think this is a script to make a door walk-throughable every five minutes...
----------------------------------------
Door = script.Parent
while true do
wait(300)
Door.CanCollide = false
wait(300)
Door.CanCollide = true
end
----------------------------------------
This was a script by
Rath |
|
erikrulesJoin Date: 2008-02-02 Post Count: 1554 |
Here is a ClickDetecter Activated Hint script!
function onClicked()
h=Instance.new("Hint")
h.Parent=game.Workspace
h.Text="Put Text Here"
wait(5)
h:remove()
script.Parent.ClickDetector.MouseClick:connect(onClicked)
Just put ClickDetecter in any brick and put this script into the brick! |
|
|
jeffcenaJoin Date: 2007-08-26 Post Count: 3743 |
function onClicked()
h=Instance.new("Hint")
h.Parent=game.Workspace
h.Text="Put Text Here"
wait(5)
h:remove()
game.Workspace.PrimaryPart.ClickDetector.MouseClick:connect(onClicked) |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
not much going on in the forum, i'll just try to get things moving
e = game.Workspace.flashjoew.Torso:clone()
e.Parent = game.Workspace
e.Position = game.Workspace.flashjoew.Torso.Position
tada! |
|
gergy008Join Date: 2008-03-16 Post Count: 7039 |
[ Content Deleted ] |
|
jak12321Join Date: 2007-12-12 Post Count: 2814 |
gergy, i reported you because of major spam, LEARN SCRIPTING |
|
|
RathGuard your script will not work because script.Parent is the workspace. It will work only if you put the script in a brick (or a seat or a spawnlocation). |
|
RathgarfJoin Date: 2007-05-28 Post Count: 1245 |
Knid of self explaitory. I knew that, too. |
|
jkniteJoin Date: 2007-11-30 Post Count: 614 |
I need help scripting, please tell me how to fix my spawns. if a person is on the start, the next person who comes in, goes on part 1! Please help! |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
|
|
whathe12Join Date: 2008-02-15 Post Count: 5372 |
ummmm i don't no how to script..... |
|
|
Lol then dont post and heres a simple script cause i dont wana give out my good ones T__T its a humanoid fixer if someone removes ur humanoid u can always get it back >:P
-----
e = Instance.new("Humanoid")
e.Parent = game.Workspace.commander79--Name here |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
or
while true do
wait()
check = game.Workspace.namehere:findFirstChild("Humanoid")
if check ~= nil then return end
e = Instance.new("Humanoid")
e.Parent = game.Workspace.namehere
end
end
will constantly check, and fix your humanoid, very helpful i think, if it works that is |
|
|
there are a lot of usefull scrips here. i jazzed up my place a little. (before it got lost but differant thread http://www.roblox.com/Forum/ShowPost.aspx?PostID=1116918) Just by reading some of these i think i made a script that would work, but im gunna test it before i put it here. |
|
|
ne1 know a script to make a brick rapidly change colors, to a lot of colors? like a super disco floor. that is my first script. if you know one put it here so i can see if they are the same. |
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
while true do
wait()
script.Parent.BrickColor = BrickColor.new(math.random(1,30))
end
that could do it... not sure though |
|
|
make base 3 times bigger:
base = workspace.PrimaryPart
base.CFrame = CFrame.new(0, 0.2, 0) --put base at 0
newbase = base:Clone()
x = -512
z = 0
for i = 1, 3 do
b = newbase:Clone()
b.Parent = workspace
b.CFrame = CFrame.new(x, 0.2, z)
x = x+512
end
x = -512
z = 512
for i = 1, 3 do
b = newbase:Clone()
b.Parent = workspace
b.CFrame = CFrame.new(x, 0.2, z)
x = x+512
end
x = -512
z = 1024
for i = 1, 3 do
b = newbase:Clone()
b.Parent = workspace
b.CFrame = CFrame.new(x, 0.2, z)
x = x+512
end
|
|
Dr01d3k4Join Date: 2007-10-11 Post Count: 17916 |
I made a ban script for script builder. It bans them from that server, though I'm not sure if it works and it is on a different computer. |
|
|
oh and flashjoe you made a slight mistake.. fixed:
while true do
wait()
check = game.Workspace.namehere:findFirstChild("Humanoid")
if check ~= nil then return end
e = Instance.new("Humanoid")
e.Parent = game.Workspace.namehere
end
|
|
FlashJoeWTop 100 PosterJoin Date: 2007-12-24 Post Count: 4886 |
umm... no, i think you need an extra end for the if |
|
|
flash joe mine is basicly that only a little bit diff so yea i think i did it right |
|
DrNinjaJoin Date: 2008-01-02 Post Count: 1241 |
I need this on my forums ^_^ |
|
|