I’m making a Sprint Button for Mobile users, but I would like to know how can I get rid of the old image format?
I have tried :SetImage but that’s not quite what I’m looking for.

You can use GetButton to get the ImageButton and assign it’s Image.
Do you have an example of how that may look like? (Just the line of code)
Simple, pass the bind name and assign to Image:
local ContextActionService = game:GetService("ContextActionService");
ContextActionService:GetButton("Name").Image = "url";
1 Like