Answered by
4 years ago Edited 4 years ago
Hello. You have to use Mouse.Move
with the :Disconnect()
function. Try this:
01 | local Tool = script.Parent |
02 | local player = game.Players.LocalPlayer |
04 | Tool.Equipped:Connect( function (Mouse) |
05 | Mouse.Button 1 Down:Connect( function () |
06 | if Mouse.Target = = game.Workspace.EmeraldBlock.Part then |
07 | player.PlayerGui.ScreenGui.Frame.Visible = true |
08 | player.PlayerGui.ScreenGui.Frame.Frame 1 :TweenSize(UDim 2. new( 1.01 , 0 , 0.63 , 0 ), nil , "Linear" , 5 , false ) |
12 | local function onMove() |
13 | player.PlayerGui.ScreenGui.Frame.Visible = false |
14 | player.PlayerGui.ScreenGui.Frame.Frame 1 :TweenSize(UDim 2. new( 0 , 0 ,. 63 , 0 ), nil , nil , . 01 , true ) |
18 | move = Mouse.Move:Connect(onMove) |
21 | Mouse.Button 1 Up:Connect( function () |
22 | if Mouse.Target ~ = game.Workspace.EmeraldBlock.Part then |
23 | player.PlayerGui.ScreenGui.Frame.Visible = false |
24 | player.PlayerGui.ScreenGui.Frame.Frame 1 :TweenSize(UDim 2. new( 0 , 0 ,. 63 , 0 ), nil , nil , . 01 , true ) |
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.