is there any way for me to find out which part was played? Whether it was Coin2 or Coin3? script:
1 | local player = game.Players.LocalPlayer |
2 | function touch (hit) |
3 | print ( "touch" ) |
4 | print ( "Part " ..Coin 3 or Coin 2 "touched" ) |
5 | end |
6 | workspace.Coin 3. Touched:Connect(touch) |
7 | workspace.Coin 2. Touched:Connect(touch) |
01 | local player = script.Parent |
02 | local humanoid = player:WaitForChild( "Humanoid" ) |
03 |
04 | humanoid.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 |
10 | end ) |
This will print what coin was touched. Make sure you put this as a local script into StarterCharacterScripts!
I think it would be easier just to use tables to solve this problem.
1 | local player = game.Players.LocalPlayer |
2 | local coins = { workspace:WaitForChild( "Coin3" ), workspace:WaitForChild( "Coin2" ) } |
3 |
4 | for _,coin in pairs (coins) do |
5 | coin.Touched:Connect( function (hit) |
6 | print (coin.Name) |
7 | end ) |
8 | end |
What's happening is I am taking the contents of the table and adding a touched event for each element of the table.
Hi Iytew! There is a much simpler way of doing this.
1 | function onTouched(hit) |
2 | print (hit.Name.. " was touched!" ) |
3 | end |
4 |
5 | script.Parent.Touched:Connect(onTouched) |
We can get the name of the part that touched that specific part.
Hope I helped! LennyPlayzYT