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

How to access Mouse.Target parent?

Asked by 11 years ago

Hi guys, I need to get a parent of the part targeted by the mouse, I tried with something like this:

1local player = game.Players.LocalPlayer
2local mouse = player:GetMouse()
3 
4function myFunction()
5    if tostring(mouse.Target) == "MyBrick" then
6        local instance = mouse.Target.Parent:FindFirstChild("InstanceID")
7        instance.Value = 15;
8    end
9end

But that wont work, why?

1 answer

Log in to vote
0
Answered by 11 years ago

Not too sure why that didn't work, but gonna try to put my hand on it:

01local player = game.Players.LocalPlayer
02local mouse = player:GetMouse()
03 
04function 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
11end

Also I hope you do call that function somewhere.

0
Let's see alessandro112 161 — 11y
0
Didn't work, I don't know why alessandro112 161 — 11y
0
Do you ever call that function? If you want that to happen when ever you click, you have to add this at end: mouse.Button1Down:connect(myFunction) ZarsBranchkin 885 — 11y
Ad

Answer this question