For example; I have this as an image gui http://www.roblox.com/SCROLLDOWN-item?id=265733519
when I scroll over it I want it to turn to this; http://www.roblox.com/scroll-down-select-item?id=265733452
Edit1; Yes, I mean scroll over it. The gui events page mean absolutely nothing to me, i've seen it but no idea what any of it means.
Edit2; Read http://wiki.roblox.com/index.php?title=API:Class/GuiObject/MouseEnter This still doesnt help me, I only know very very basic scripting, what would I do with that script? After GuiObject.MouseEnter:connect(function(x, y) what would I put?
Dude, this is simple. To simple. First off, learn the proper asset ID's, not the URL's, and then learn how to use functions, as in
script.Parent.MouseEnter:connect(function() --code here. end)
This is what you should do:
script.Parent.MouseEnter:connect(function() script.Parent.Image = 'rbxassetid://265733452' end) script.Parent.MouseLeave:connect(function() script.Parent.Image = 'rbxassetid://265733519' end)
Please note: This code is only tested with ImageLabels, but it should work. You just need to change "Image" to the name of the image property on the object.