|
| 13 Apr 2014 10:24 PM |
| How do you make it when your mouse hovers over something, like a brick, it pops up a little text box. |
|
|
| Report Abuse |
|
|
|
| 13 Apr 2014 10:26 PM |
| I've been wondering the same thing, haven't gotten to looking it up yet. I would assume there's some sort of mouse over function. |
|
|
| Report Abuse |
|
|
2unknown2
|
  |
| Joined: 30 Oct 2011 |
| Total Posts: 9351 |
|
|
| 13 Apr 2014 10:29 PM |
local player = game.Players.LocalPlayer local tool = Instance.new("HopperBin",player.Backpack)
tool.Selected:connect(function(mouse) mouse.Move:connect(function() if mouse.Target ~= "Base" then print(mouse.Target)--when it hovers of the target it prints its name end end) end) |
|
|
| Report Abuse |
|
|
| |
|