need help fixing this i need a script that opens a description when you hover over it with your mouse and closes when you take your mouse off of it i need the text to change depending on what imagelabel it is the code i tried to make dosent even work becuase idk what im doing
local image = game.StarterGui.SideButtongui.TextLabel
local sel = script.Parent
if sel.MouseEnter then
image.Visible = true
elseif sel.MouseLeave then
image.Visible = false
end
I think this is 3rd time you make topic about this already but here is what you done wrong .MouseEnter and.MouseLeave Event need to be connect to function you will need to change this line