Skip to content

UIButton

UIButton is a class used for having interactable buttons in your place's UI.

Inherits UILabel

Events

Clicked

Fires when the UIButton is clicked

Example

script.Parent.Clicked:Connect(function ()
    print("The button was clicked!")
end)