of     1   

CircularSquare
#47134343Sunday, May 15, 2011 11:50 PM GMT

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)
citymaster22
#47134408Sunday, May 15, 2011 11:52 PM GMT

You need one more end.
CircularSquare
#47134441Sunday, May 15, 2011 11:52 PM GMT

Oh, ok. I'll give it a try.
CircularSquare
#47134578Sunday, May 15, 2011 11:54 PM GMT

I tried that but it still won't work. :/
Elloss
#47134933Monday, May 16, 2011 12:00 AM GMT

"==" not "="
Elloss
#47134973Monday, May 16, 2011 12:00 AM GMT

at the if stament.*
Vitouliss14
#47134993Monday, May 16, 2011 12:01 AM GMT

To correct you it's .Touched not onTouched...Call the script but it's event NOT the function name.
Elloss
#47135016Monday, May 16, 2011 12:01 AM GMT

statement*
Elloss
#47135252Monday, May 16, 2011 12:05 AM GMT

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.
CircularSquare
#47136237Monday, May 16, 2011 12:25 AM GMT

Ok, got it to work! Thanks.
keehl254
#59918971Wednesday, December 21, 2011 5:46 AM GMT

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)
draliendude
#59925473Wednesday, December 21, 2011 10:51 AM GMT

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)
Vitouliss14
#59973424Thursday, December 22, 2011 2:33 AM GMT

Why did you guys [ Bump ] this from like 7 monthes ago???
Sam010100001
Top 100 Poster
#59973487Thursday, December 22, 2011 2:34 AM GMT

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?
BigCuteBear
#128670203Saturday, March 22, 2014 12:18 PM GMT

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)
VerifiedName
#128670651Saturday, March 22, 2014 12:31 PM GMT

Christi, why necro bump? #nerdsunited
XMessi10
#130837062Tuesday, April 15, 2014 8:09 PM GMT

Er, do I put the script in the model or in the workspace?
Ace23333
#130837137Tuesday, April 15, 2014 8:10 PM GMT

Whai u bump... Make new thread instead of bumping -_-
Meowth552
#131464649Monday, April 21, 2014 4:38 PM GMT

Oh my god, stop bumping. #trellfuse
Supergloop
#132548429Saturday, May 03, 2014 10:24 AM GMT

[ Content Deleted ]
DDR5
#138387842Friday, June 27, 2014 5:03 PM GMT

Bumper C:
RealLua
#139511488Monday, July 07, 2014 7:01 AM GMT

k
Jaytheidiot
#143162410Sunday, August 10, 2014 5:55 AM GMT

bump

    of     1