How do I make the Gui appears when my mouse hovered it?
Asked by
5 years ago Edited 3 years ago
Please note this is a old post, so the time when I posted this I was a noob, please don't complain
Ok, I checked the script, that wasn't any error, but I have no idea why the script doesn't work.
1 | script.Parent.ClickDetector.MouseHoverLeave:Connect( function (Player) |
2 | game.StarterGui.GunShop.Enabled = false |
5 | script.Parent.ClickDetector.MouseHoverEnter:Connect( function (Player) |
6 | game.StarterGui.GunShop.Enabled = true |
I'd think the game does error, BUT I tested another script like this, it WORKED??! :
1 | script.Parent.ClickDetector.MouseHoverLeave:Connect( function (Player) |
5 | script.Parent.ClickDetector.MouseHoverEnter:Connect( function (Player) |
Every help is appreciated.
Edit :
1 | script.Parent.ClickDetector.MouseHoverLeave:Connect( function (Player) |
2 | game.Players.LocalPlayer.PlayerGui.GunShop.Enabled = false |
5 | script.Parent.ClickDetector.MouseHoverEnter:Connect( function (Player) |
6 | game.Players.LocalPlayer.PlayerGui.GunShop.Enabled = true |
This script won't work for me ;-;