Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local images = {
- OnEnter = "http://www.roblox.com/asset/?id=338070294",
- OnLeave = "http://www.roblox.com/asset/?id=338068804"
- }
- script.Parent.Image = images.OnLeave
- script.Parent.MouseEnter:connect(function()
- script.Parent.Image = images.OnEnter
- end)
- script.Parent.MouseLeave:connect(function()
- script.Parent.Image = images.OnLeave
- end)
- script.Parent.MouseButton1Click:connect(function()
- script.Parent.Image = images.OnLeave
- end)
Advertisement
Add Comment
Please, Sign In to add comment