|
I was trying to make a script that would open a door when I touch it, but it doesn't work. I'm not 100% sure if the connection line is right, so that could be the problem. Here is the script:
function onTouch(hit)
if hit.Parent.Name = "CircularSquare" then
script.Parent.CanCollide = false
wait(1)
script.Parent.CanCollide = true
end
script.Parent.Touched:connect(onTouch)
|
|
|
|
Oh, ok. I'll give it a try. |
|
|
I tried that but it still won't work. :/ |
|
EllossJoin Date: 2009-03-15 Post Count: 7044 |
"==" not "=" |
|
EllossJoin Date: 2009-03-15 Post Count: 7044 |
at the if stament.* |
|
|
To correct you it's .Touched not onTouched...Call the script but it's event NOT the function name. |
|
EllossJoin Date: 2009-03-15 Post Count: 7044 |
statement* |
|
EllossJoin Date: 2009-03-15 Post Count: 7044 |
function onTouch(hit)
if hit.Parent.Name == "CircularSquare" then
script.Parent.CanCollide = false
wait(1)
script.Parent.CanCollide = true
end
end
script.Parent.Touched:connect(onTouch)
-- There. |
|
|
Ok, got it to work! Thanks. |
|
keehl254Join Date: 2010-09-08 Post Count: 131 |
Lol i had a more advanced script worked out for you and he answered it.
This is the code i tried to give you. LOL
b=script.Parent
r=true
b.Touched:connect(function(t)
p=game.Players:getPlayerFromCharacter(t.Parent)
if p then
if p.Name = "CircularSquare" then
if r then
r=false
for i=1,10 do
wait(.1)
b.Transparency=i/10
end
b.CanCollide=false
wait(2)
for i=1,10 do
wait(.1)
b.Transparency=1-(i/10)
b.CanCollide=true
end
r=true
end
else
h=p.Character:findFirstChild"Humanoid"
if h then
h.Health=0
end end end end) |
|
|
function onTouch(hit)
if hit.Parent.Name = "CircularSquare" then
script.Parent.CanCollide = false
wait(1)
script.Parent.CanCollide = true
end
script.Parent.onTouched:connect(onTouch)
|
|
|
Why did you guys [ Bump ] this from like 7 monthes ago??? |
|
Sam010100001Top 100 PosterJoin Date: 2009-08-09 Post Count: 34814 |
script.Parent.Touched:connect(function (hit)
if hit.Parent.Name == "CircularSquare" then
script.Parent.CanCollide = false
wait(1)
script.Parent.CanCollide = true
end
end)
What Pumpkin? |
|
|
function onTouch(hit)
if hit.Parent.Name == "CircularSquare" then
script.Parent.CanCollide = false
wait(1)
script.Parent.CanCollide = true
end
end
script.Parent.Touched:connect(onTouch) |
|
|
Christi, why necro bump?
#nerdsunited |
|
XMessi10Join Date: 2014-04-13 Post Count: 8 |
Er, do I put the script in the model or in the workspace? |
|
Ace23333Join Date: 2011-11-20 Post Count: 1341 |
Whai u bump... Make new thread instead of bumping -_- |
|
Meowth552Join Date: 2009-12-17 Post Count: 2181 |
Oh my god, stop bumping.
#trellfuse |
|
|
DDR5Join Date: 2010-01-11 Post Count: 26 |
Bumper
C: |
|
RealLuaJoin Date: 2013-07-19 Post Count: 50 |
k |
|
|