Is this how it would be?
H = game.Workspace.Part
01 | local debounce = true |
02 | function onTouch(Part) |
03 | if debounce and Button.Parent:FindFirstChild( "Humanoid" ) and Button.Parent.Name = = game.Players:findFirstChild(Button.Parent.Name) then debounce = false |
04 | function onTouch(Part) |
05 | Instance.new( "Message" , game.Workspace.Part) |
06 | wait() |
07 | H.Message.Text( "You can pass." ) |
08 | end |
09 |
10 | script.Parent.Touched:connect(onTouch) |
To some extent, yes. But you need to remove the message after a small while, otherwise your game will get message spam. You may even want to add intervals between when the message can be activated or not.
--Example:
enabled = true H = game.Workspace.Part
function onTouch(Part) if enabled == true then enabled = false Instance.new("Message", game.Workspace.Part) wait() H.Message.Text("You can pass.") wait(1) H.Message:remove() enabled = true end end
script.Parent.Touched:connect(onTouch)
Wait so it is shown like this?
01 | enabled = true |
02 |
03 | H = game.Workspace.Part |
04 |
05 | function onTouch(Part) |
06 | if enabled = = true then |
07 | enabled = false |
08 | Instance.new( "Message" , game.Workspace.Part) |
09 | wait() |
10 | H.Message.Text( "You can pass." ) |
11 | wait( 1 ) |
12 | H.Message:remove() enabled = true |
13 | end |
14 | end |
15 |
16 | script.Parent.Touched:connect(onTouch) |
Pretty much, but I didn't even know H.Message.Text("You can pass.") works I though you could only say
H.Message.Text="You can pass."
Never forget the debounce!