I am trying to make this frame bleak on and off for 1.5 seconds but it won't allow me to try it. Any suggestions?
local Frame = game.Workspace.Frame while true do wait(1.5) Frame.Visible = false wait(1.5) Frame.Visible = true end
--Put this under the object named "Frame" --Put the object to the StarterGui
while true do wait(1.5) script.Parent.Visible = false wait(1.5) script.Parent.Visible = true end
--Put this under the object named "Frame" --Put the object to the StarterGui
while true do wait(1.5) script.Parent.Visible = false wait(1.5) script.Parent.Visible = true end
Just making NanoWolf's answer easier to read. Good luck