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

Message not being created on touch?

Asked by
AmVolt 60
10 years ago

So I just started learning how to script and I am confused because I though that when I put

1function onTouched()
2 
3    m = Instance.new("Message", game.Workspace)
4   m.Text = "Ouch! That hurts!"
5   wait(5)
6   m:Remove()
7end

on a part and walked on it, then a message will appear. I made this script and put it in a Wedge part and when I walk on it, nothing happens. Help? Am I doing the wrong thing? Is there something I'm missing? Thanks.

0
You did not add the Connection line. TheeDeathCaster 2368 — 10y

4 answers

Log in to vote
6
Answered by 10 years ago

Yes, you're almost there!

Remember, functions have to be CALLED in order for them to run.

Just saying:

1function printa()
2print("@sera plz")
3end

Won't do ANYTHING.

To get the above function to work, you'd have to do;

1function printa()
2print("@sera plz")
3end
4 
5printa() --This tells the function to run

Now, let's do the same with yours:

1function onTouched()
2m = Instance.new("Message", game.Workspace)
3m.Text = "Ouch! That hurts!"
4wait(5)
5m:Destroy()
6--[[Use :Destroy() rather than :Remove()]]
7end
8 
9script.Parent.Touched:connect(onTouched)

script.Parent.Touched:connect(onTouched) Although this line isn't exactly 'calling' the function, it does bind the function to be evaluated when the event fires.

1
script.Parent.Touched:connect(onTouched) isn't calling the onTouched function. To call a function, you need two parentheses. Leave them out and you just get the function *value* -- which is what you want. You connect the Event to the Function, then roblox calls your function whenever the event fires. You just supply the value. Perci1 4988 — 10y
Ad
Log in to vote
2
Answered by 10 years ago

In Roblox, a function can be called by an "event". The event for a part being touched is .Touched. At the end of your code, you would add:

1script.Parent.Touched:connect(onTouched)
0
Ok, thanks! AmVolt 60 — 10y
0
Is this before or after "end"? AmVolt 60 — 10y
0
After "end". The calling of the function isn't going to be a part of the function itself :P grasheeno 70 — 10y
0
Ok thank you :) AmVolt 60 — 10y
0
You don't need an event to call a function. DigitalVeer 1473 — 10y
Log in to vote
1
Answered by
dyler3 1510 Moderation Voter
10 years ago

You have one error in this script. I'll try to explain it. Use this:

1function onTouched()
2    m = Instance.new("Message", game.Workspace)
3    m.Text="Ouch! That hurts!"
4    wait(5)
5    m:remove()
6end
7 
8script.Parent.Touched:connect(onTouched) --This connects the function to an actual event that fires when the part is touched. The event is called "Touched".

This should work now. You needed to connect the function to an event in order for it to work correctly, which is what I did on the last line. Hope I helped :P

0
Thank you so much :) Expect more nooby questions in the future xD AmVolt 60 — 10y
Log in to vote
-4
Answered by 10 years ago
1script.Parent.Touched:connect(onTouched)
1
For future reference, don't just state lines of code without explaining what you did, and why. Muoshuu 580 — 10y

Answer this question