What is a good approach to detect object change by mouse hover?
Hello, I've been developing a script that when the mouse left button is held down, a value is incremented until the left button is released. My goal is that while the mouse is down and simultaneously if the object that the mouse is hovering over changes, the value would be reset to zero, and would still increment. The following is my code/ attempt:
01 | local Player = game.Players.LocalPlayer |
02 | local Mouse = Player:GetMouse() |
08 | local obj 1 = Mouse.Target.Position |
09 | local obj 2 = Mouse.Target.Position |
11 | local screenGUI = Instance.new( "ScreenGui" ,game.Players.LocalPlayer.PlayerGui) |
12 | screenGUI.Name = "screenGUI" |
14 | local textLabelHoldMouse = Instance.new( "TextLabel" ,screenGUI) |
15 | textLabelHoldMouse.Name = "HoldMouse" |
16 | textLabelHoldMouse.Position = UDim 2. new( 0 , 10 , 0 , 400 ) |
17 | textLabelHoldMouse.Size = UDim 2. new( 0 , 150 , 0 , 25 ) |
18 | textLabelHoldMouse.BorderSizePixel = 0 |
19 | textLabelHoldMouse.BackgroundTransparency = 1 |
20 | textLabelHoldMouse.TextColor 3 = BrickColor.White().Color |
21 | textLabelHoldMouse.Text = "Hold: " |
22 | textLabelHoldMouse.TextXAlignment = "Left" |
23 | textLabelHoldMouse.TextTransparency = 0 |
27 | Mouse.Button 1 Down:connect( function () |
29 | if workspace.numMode.Value = = 0 and tostring (Mouse.Target) = = "DirtBlockClone" and Player:DistanceFromCharacter(Mouse.Target.Position)< 16 then |
30 | Mouse.Button 1 Up:connect( function () |
37 | while holdSwitch = = 0 do |
40 | textLabelHoldMouse.Text = "Hold: " ..holdVal |
41 | if not obj 1 = = obj 2 then |
So, I instantiate a comparison for each step of the wait interval, and it would test if the object target position has changed. I'm not sure what is going wrong.