#Buttons

3 messages · Page 1 of 1 (latest)

random finch
#

Alright, so to make a button that is initially hidden and appears when the player presses the "Play" button, we can use a property called Visible. This property controls whether the button is visible or not, and we can set it to false by default to hide the button. Then, when the player presses the "Play" button, we can change the Visible property to true to make the hidden button appear on the screen.

bleak forgeBOT
#

studio** You are now Level 2! **studio

random finch
#

local hiddenButton = script.Parent.HiddenButton
local playButton = script.Parent.PlayButton

playButton.Activated:Connect(function()
hiddenButton.Visible = true
end)