So, in my place I made a script to make a brick show a TextLabel in a SurfaceGui change every 5 seconds, but it won't run. Does it have to do with my script? Here is the script:
repeat game.Workspace.BulletinGui.Welcome.Enabled = true wait(5) game.Workspace.BulletinGui.Welcome.Enabled = false game.Workspace.BulletinGui.Notice.Enabled = true wait(5) game.Workspace.BulletinGui.Notice.Enabled = false game.Workspace.BulletinGui.Attention.Enabled = true wait(5) game.Workspace.BulletinGui.Attention.Enabled = false game.Workspace.BulletinGui.Admin.Enabled = true wait(5) game.Workspace.BulletinGui.Admin.Enabled = false game.Workspace.BulletinGui.GunID.Enabled = true wait(5) game.Workspace.BulletinGui.GunID.Enabled = false until
Change your repeat loop to a while true do loop,
while true do -- all of your code here end
Because your repeat loop would need a check at the until part
g = true repeat print("blah") wait() until not g
Good luck!