of     1   

legoe22
#172039392Saturday, August 22, 2015 5:46 AM GMT

Hi, I'm trying to make it so when a player hovers their mouse over a textbutton something happens. I was told to use Mouse Enter, But How would i do this?
Meista
#172039611Saturday, August 22, 2015 5:49 AM GMT

local x = BUTTON LOCATION x.MouseEnter:connect(function() --code end)
Barbariancreep
#172039775Saturday, August 22, 2015 5:52 AM GMT

button.MouseEnter:connect(function(x, y) -- leave these values as x and y if x == x position and y == y position then --code end end)

    of     1