of     1   

lavaminigames
#69748Saturday, July 21, 2007 5:15 PM GMT

is ther somtin rong wit this script? ---- made by PCwiener function onTouched(hit) msg=Instance.new("Message") msg.Parent= game.Workspace msg.Text= hit.Parent.Name .." Wuz Here" wait(3) msg:remove() end script.Parent.Touched:connect(onTouched) plz tell me wats rong wit this script
PCwiener
#69763Saturday, July 21, 2007 5:43 PM GMT

no, that is right.....
Laxxe
#69774Saturday, July 21, 2007 5:58 PM GMT

Nothing wrong, you just need to insert it into a block, not having it just floating in the workspace.
PCwiener
#69788Saturday, July 21, 2007 6:11 PM GMT

he knows that...
lavaminigames
#69953Saturday, July 21, 2007 8:26 PM GMT

then y is it wen som1 touches it the message doesnt get removed?
Anaminus
Top 100 Poster
#69999Saturday, July 21, 2007 9:06 PM GMT

Use a debouncer. ?-Anaminus-?
PCwiener
#70071Saturday, July 21, 2007 9:53 PM GMT

oh yea, thats what i missed- look here: http://wiki.roblox.com/index.php?title=Debounce
lavaminigames
#70350Sunday, July 22, 2007 2:55 AM GMT

wer do i put debounce and do i put true or false?
PCwiener
#70359Sunday, July 22, 2007 3:12 AM GMT

fine, ill do it. -- made by PCwiener db= false function onTouched(hit) if db== false then db= true msg=Instance.new("Message") msg.Parent= game.Workspace msg.Text= hit.Parent.Name .." Wuz Here" wait(3) msg:remove() db= false end script.Parent.Touched:connect(onTouched)

    of     1