iRefixed

Untitled

May 28th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. local images = {
  2. OnEnter = "http://www.roblox.com/asset/?id=338070294",
  3. OnLeave = "http://www.roblox.com/asset/?id=338068804"
  4. }
  5.  
  6. script.Parent.Image = images.OnLeave
  7.  
  8. script.Parent.MouseEnter:connect(function()
  9. script.Parent.Image = images.OnEnter
  10. end)
  11.  
  12. script.Parent.MouseLeave:connect(function()
  13. script.Parent.Image = images.OnLeave
  14. end)
  15.  
  16. script.Parent.MouseButton1Click:connect(function()
  17. script.Parent.Image = images.OnLeave
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment