(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!
(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?
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)
wow you are just so instant with your posts
even at this hour
Thanks, let my try!
The funny thing is that I just woke up recently
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
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.
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
Np! Also do make sure to mark the post as a solution!