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

How do I detect when the mouse target changes while holding down the mouse click?

Asked by 4 years ago

This is the code I have

01local Tool = script.Parent
02local player = game.Players.LocalPlayer
03 
04 
05Tool.Equipped:Connect(function(Mouse)
06    Mouse.Button1Down:Connect(function()
07        if Mouse.Target == game.Workspace.EmeraldBlock.Part then
08            player.PlayerGui.ScreenGui.Frame.Visible = true
09            player.PlayerGui.ScreenGui.Frame.Frame1:TweenSize(UDim2.new(1.01, 0,0.63, 0), nil, "Linear", 5, false )
10        end
11    end)
12    Mouse.Button1Up:Connect(function()
13        if Mouse.Target ~= game.Workspace.EmeraldBlock.Part then
14        player.PlayerGui.ScreenGui.Frame.Visible = false
15        player.PlayerGui.ScreenGui.Frame.Frame1:TweenSize(UDim2.new(0, 0,.63,0), nil, nil, .01, true )
16        end
17    end)
18end)

What happens is when I move my mouse away from the block while i'm holding down mouse button 1, the GUI continues to tween, even though the mouse target is no longer that part

1 answer

Log in to vote
1
Answered by 4 years ago
Edited 4 years ago

Hello. You have to use Mouse.Move with the :Disconnect() function. Try this:

01local Tool = script.Parent
02local player = game.Players.LocalPlayer
03 
04Tool.Equipped:Connect(function(Mouse)
05    Mouse.Button1Down:Connect(function()
06        if Mouse.Target == game.Workspace.EmeraldBlock.Part then
07            player.PlayerGui.ScreenGui.Frame.Visible = true
08            player.PlayerGui.ScreenGui.Frame.Frame1:TweenSize(UDim2.new(1.01, 0,0.63, 0), nil, "Linear", 5, false )
09 
10        local move
11 
12        local function onMove()
13                          player.PlayerGui.ScreenGui.Frame.Visible = false
14                  player.PlayerGui.ScreenGui.Frame.Frame1:TweenSize(UDim2.new(0, 0,.63,0), nil, nil, .01, true )
15            move:Disconnect()
View all 27 lines...

When the mouse moves, the Frame turns invisible and tweens the Frame's Frame1. Then it disconnects the function. Please upvote and accept this question if it helped.

0
"Moved is not a valid member of Mouse" That's the error I am getting DarkDanny04 407 — 4y
0
I fixed it. youtubemasterWOW 2741 — 4y
Ad

Answer this question