Any functions that detect when the mouse hovers over a **BRICK**? I know it's possible with a gui, but is it possible with a brick? If so, what is the function?
Ever heard about ClickDetectors?
local CD = script.Parent:WaitForChild("ClickDetector") CD.MouseHoverEnter:connect(function(Plr) -- Plr is the Player who hovered over the Part. -- Do stuff. end)
http://wiki.roblox.com/index.php?title=API:Class/ClickDetector/MouseHoverEnter
You are welcome,
Manchester1002