How to make something appear when hovering over?

(Yes, i did try This One , but it’s now private!

)


Hi!
So with my Settings Page, I want this text and arrow to appear when you hover over the ! to keep the UI Clean. How would that be done?


Thanks!

3 Likes

GuiObject | Roblox Creator Documentation Boop

This Event fires when you move the mouse to a certain GUI Object, whether it be: (TextButton, Frame, ImageLabel, etc)

local Frame = script.Parent
local OtherFrame = script.Parent.OtherFrame

Frame.MouseEnter:Connect(function()
    OtherFrame.Visible = true
end)
3 Likes

wow you are just so instant with your posts
image
even at this hour
Thanks, let my try!

The funny thing is that I just woke up recently :sweat_smile:

Gotcha, lemme know how it goes! Also you’d need to detect when the player has the mouse has its GuiObject off using the MouseLeave event as well: GuiObject | Roblox Creator Documentation

1 Like

Time zones are crazy. My builder, it’s likle 5:00 AM, my co scripter it’s like 6:30 on a monday, and my ui designer it’s 10:30 today.



Works + looks nice, ty!

2 Likes

The funny thing is that I do live in a EST timezone, but I work the Night Shift so it’s been different for me :thinking:

Np! Also do make sure to mark the post as a solution! :thinking:

1 Like