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 7 years ago

https://gyazo.com/f4700cf61e29ab8a31f703fbdfc6c5c8

1 answer

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

This is assuming the script is parented to the part.

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

Answer this question