Hi guys, I need to get a parent of the part targeted by the mouse, I tried with something like this:
1 | local player = game.Players.LocalPlayer |
2 | local mouse = player:GetMouse() |
3 |
4 | function myFunction() |
5 | if tostring (mouse.Target) = = "MyBrick" then |
6 | local instance = mouse.Target.Parent:FindFirstChild( "InstanceID" ) |
7 | instance.Value = 15 ; |
8 | end |
9 | end |
But that wont work, why?
Not too sure why that didn't work, but gonna try to put my hand on it:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 |
04 | function myFunction() |
05 | if mouse.Target then |
06 | if mouse.Target.Name = = "MyBrick" then |
07 | local instance = mouse.Target.Parent:FindFirstChild( "InstanceID" ) |
08 | instance.Value = 15 ; |
09 | end |
10 | end |
11 | end |
Also I hope you do call that function somewhere.