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

is there any way for me to find out which part has activated the function?

Asked by
lytew 99
5 years ago

is there any way for me to find out which part was played? Whether it was Coin2 or Coin3? script:

1local player = game.Players.LocalPlayer
2function touch (hit)           
3    print("touch")
4        print("Part "..Coin3 or Coin2 "touched")
5end
6workspace.Coin3.Touched:Connect(touch)
7workspace.Coin2.Touched:Connect(touch)

3 answers

Log in to vote
1
Answered by 5 years ago
Edited 5 years ago
01local player = script.Parent
02local humanoid = player:WaitForChild("Humanoid")
03 
04humanoid.Touched:Connect(function(hit)
05    if hit.Name == "Coin2" then
06        print("Coin2 was touched.")
07    elseif hit.Name == "Coin3" then
08        print("Coin3 was touched".)
09    end
10end)

This will print what coin was touched. Make sure you put this as a local script into StarterCharacterScripts!

0
the problem is that i needed it in one function lytew 99 — 5y
0
ok i will edit the answer with the new code in a second Dan_PanMan 227 — 5y
0
@lytew check the new code Dan_PanMan 227 — 5y
0
ok lytew 99 — 5y
View all comments (6 more)
0
what exactly does this script do? lytew 99 — 5y
0
oh man thanks! I'll try to edit it here, it will help a lot, really! lytew 99 — 5y
0
check if a coin was touched and prints out the coin that was touched Dan_PanMan 227 — 5y
0
be sure to accept the answer if it works Dan_PanMan 227 — 5y
0
There is no need to check the name of hit. You can concatenate the print() with the name of the hit part. LennyPlayzYT 269 — 5y
0
There is no need to check the name of hit. You can concatenate the print() with the name of the hit part. LennyPlayzYT 269 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

I think it would be easier just to use tables to solve this problem.

1local player = game.Players.LocalPlayer
2local coins = {workspace:WaitForChild("Coin3"), workspace:WaitForChild("Coin2")}
3 
4for _,coin in pairs(coins) do
5    coin.Touched:Connect(function(hit)
6        print(coin.Name)
7    end)
8end

What's happening is I am taking the contents of the table and adding a touched event for each element of the table.

Log in to vote
0
Answered by 5 years ago

Hi Iytew! There is a much simpler way of doing this.

1function onTouched(hit)
2      print(hit.Name.. " was touched!")
3end
4 
5script.Parent.Touched:Connect(onTouched)

We can get the name of the part that touched that specific part.

Hope I helped! LennyPlayzYT

0
I think he wants the actual part that was touched, not the part that touched it. My bad if I misunderstood though. Brandon1881 721 — 5y
0
Yeah, the actual part that touches is "hit" LennyPlayzYT 269 — 5y
0
We can do hit.Name.. " was touched!" meaning, it gets the name of the part. Let's say it was Coin2. It will say "Coin2 was touched!" LennyPlayzYT 269 — 5y

Answer this question