I did the GetMouse Method and didn't find anything else.
You could add a gui to it using the GetMouse method of a Player (in a LocalScript of course), we can access their Mouse and what it is 'hovering over'.
01 | local Player = Game.Players.LocalPlayer |
02 | local Mouse = Player:GetMouse() |
03 |
04 | Mouse.Move:connect( function () |
05 | if Mouse.Target and Mouse.Target = = Workspace.SpecialHoverBrick then |
06 | Player.PlayerGui.ScreenGui.SpecialHoverGui.Visible = true |
07 | elseif Mouse.Target and Mouse.Target ~ = Workspace.SpecialHoverBrick then |
08 | Player.PlayerGui.ScreenGui.SpecialHoverGui.Visible = false |
09 | end |
10 | end ) |