of     1   

Camchronic
#227588125Wednesday, November 15, 2017 11:08 PM GMT

How do you make a gui appear if you hover your mouse over a brick?
BloodDragonII
#227588305Wednesday, November 15, 2017 11:13 PM GMT

Use a .MouseHover event and make a script inside a part that inserts a local script into the players character for whoever you want the GUI to show for.
mattscy
#227588367Wednesday, November 15, 2017 11:15 PM GMT

put this local script inside the gui, and call the brick "ShowGui" local lp = game.Players.LocalPlayer local mouse= lp:GetMouse() script.Parent.Visible = false mouse.Move:Connect(function() local targ = mouse.Target if targ and targ.Name == "ShowGui" then script.Parent.Visible = true else script.Parent.Visible = false end end)
Camchronic
#227588441Wednesday, November 15, 2017 11:17 PM GMT

Thanks, my man!
Camchronic
#227588768Wednesday, November 15, 2017 11:26 PM GMT

Uhhh, it isn't working. Send me a model of the brick and GUI.

    of     1