How can I skip over a text label?

I added a localscript to it and it seems to work properly. I also changed both Zindex back to 1.

Since it is an ImageButton, there will be no visual changes until you add an image. So, if you want to visually see it change, you’d have to add an image or convert it to a TextButton. You can use this plugin to convert it without deleting it:

I tested out your button with a localscript and it’s working fine.
Here’s the script that I added to the ScreenGui:

script.Parent.ShopButton.MouseButton1Click:Connect(function()
	print("OK")
end)

Are you looking to see it do something specifically, like an animation or connect it to a script? Otherwise, the button works completely fine.

2 Likes