of     1   

tobymeyrick
#59971798Thursday, December 22, 2011 2:11 AM GMT

If you want to script start with this simple function : "function onTouched(hit)" then at the end : "script.Parent.Touched:connect(onTouched)" Which means that whatever the script's parent is will take effect on the script. And because of the function, at the end before "script.Parent.Touched:connect(onTouched)" you want to type "end". The only problem is that the onTouched(hit) function will loop. So you want the "debounce = false" line .... Here is a full script for a sample: debounce = false function onTouched(hit) msg = Instance.new("Message") msg.Parent = game.Workspace msg Text = "You touched The brick!!" wait(13) msg:remove() end script.Parent.Touched:connect(onTouched)
[rfa#hidefromsearch]
#59971887Thursday, December 22, 2011 2:12 AM GMT

[rfa#hidefromsearch]
stealthsniper200
#59972017Thursday, December 22, 2011 2:14 AM GMT

www.robloxwiki.com THIS, is where you should go...
tobymeyrick
#59972068Thursday, December 22, 2011 2:15 AM GMT

If this does not help you, then you are just an idiot. Seriously ...
tobymeyrick
#59972135Thursday, December 22, 2011 2:16 AM GMT

that is not even an adress ... http://www.wiki.roblox.com
Sam010100001
Top 100 Poster
#59972152Thursday, December 22, 2011 2:16 AM GMT

script.Parent.Touched:connect(function () -bleh end) Much better to use. What Pumpkin?
[rfa#hidefromsearch]
#59972177Thursday, December 22, 2011 2:16 AM GMT

[rfa#hidefromsearch]

    of     1