basically i want to make a text label appear on the screen at a random time and a random place on my screen. im very new to using guis n stuff so explanation would be awesome, thanks!
Here's a template u can use
Gui = [insert gui object here] Panel = Gui.Panel While true do wait(math.random(1,10)) Panel.Position = UDim2.new(0, math.random([screen width]), 0, math.random([screen height])) Panel.Visible = true wait(1) -- dissapear after a second Panel.Visible = false end