Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make Billboard GUI Appear on mouse hover?

Asked by 6 years ago

https://gyazo.com/f4700cf61e29ab8a31f703fbdfc6c5c8

1 answer

Log in to vote
1
Answered by
PolyyDev 214 Moderation Voter
6 years ago

This is assuming the script is parented to the part.

local c  = script.Parent.ClickDetector

c.MouseHoverEnter:Connect(function(player) -- Just incase you need it
    script.Parent.BillboardGui.Enabled = true
end)

c.MouseHoverLeave:Connect(function(player) -- Just incase you need it [2]
    script.Parent.BillboardGui.Enabled = false
end
0
Seems like it would work but dosen't :/ Lord_Nermall 1 — 6y
Ad

Answer this question