How do I make a when I hold down on a button it turns a frame visible

How do I make a when I hold down on a button it turns a frame visible

1 Like

So when you let go, it turns invisible?

1 Like

just add a mousebutton1down event and then make it visible and mousebutton1up to make it invisible

1 Like

well I would like to to be like a shift button but the frame visible is just an example so basically what I want is like in Jailbrek when you hold down the run button you run but if you let it go you stop running so thats what I mean

1 Like

ok thank you I will start scripting it now

1 Like

since you are wanting to make a run button styled button use the way i suggested

button.MouseButton1Down:Connect(function()
   start run
end)

button.MouseButton1Up:Connect(function()
   stop run
end)

ok thank you I really appreciate it

1 Like