Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Help with messages?

Asked by 11 years ago

Is this how it would be?

H = game.Workspace.Part

01local debounce = true
02function onTouch(Part)
03if debounce and Button.Parent:FindFirstChild("Humanoid") and Button.Parent.Name == game.Players:findFirstChild(Button.Parent.Name) then debounce = false
04function onTouch(Part)
05Instance.new("Message", game.Workspace.Part)
06wait()
07H.Message.Text("You can pass.")
08end
09 
10script.Parent.Touched:connect(onTouch)

3 answers

Log in to vote
1
Answered by 11 years ago

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)

0
Yes, it is. geckohero17 55 — 11y
Ad
Log in to vote
1
Answered by 11 years ago

Wait so it is shown like this?

01enabled = true
02 
03H = game.Workspace.Part
04 
05function onTouch(Part)
06if enabled == true then
07enabled = false
08Instance.new("Message", game.Workspace.Part)
09wait()
10H.Message.Text("You can pass.")
11wait(1)
12H.Message:remove() enabled = true
13end
14end
15 
16script.Parent.Touched:connect(onTouch)
Log in to vote
1
Answered by 11 years ago

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!

Answer this question