Hello friends, so recently I’ve tried setting a TextButton’s image, as you can see by this post, it didn’t. If you could help me out that would be awesome!
Errors: nil
LocalScript:
local Image = script.Parent.Image
Image = "rbxassetid://6027287125"
TextButtons do not have an image property. and like @NyrionDev said you are changing what the variable is defining. If you want to change the image you would do this.
local imageLabel = path_to_instance
imageLabel.Image = "rbxassetid://6027287125"