Home   Search   Register  
Help Center  > Scripting Help  > how do i make a message appear at a certain time  
 
Display using:  
Previous Thread :: Next Thread 
 Author  Thread: how do i make a message appear at a certain time
JEVILOGEN is offline. Last active: 2/14/2021 5:39:46 AM JEVILOGEN
Joined: 19 Jun 2020
Total Posts: 19
 
how do i make a message appear at a certain time
Posted: 30 Dec 2020 05:57 AM
i'm working on a game and i want a schedule system like a school period starts at 08:00:00 and a message pops up at that time saying "math is starting" and it dissapears 5 seconds later, but sadly i don't know lua and the internet doesn't get me so can you teach me how to do this?
Report Abuse
RGT is offline. Last active: 2/27/2021 10:19:58 PM RGT
Joined: 31 Oct 2019
Total Posts: 76
 
Re: how do i make a message appear at a certain time
Posted: 06 Jan 2021 17:05 PM
local Message = Instance.new("Message")
Message.Text = "Math is starting"
Message.Parent = workspace
wait(5)
Message:Remove()
Report Abuse
RGT is offline. Last active: 2/27/2021 10:19:58 PM RGT
Joined: 31 Oct 2019
Total Posts: 76
 
Re: how do i make a message appear at a certain time
Posted: 06 Jan 2021 17:06 PM
local Message = Instance.new("Message")
Message.Text = "Math is starting"
Message.Parent = workspace
wait(5)
Message:Remove()
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
GoodBlox Forum  > Help Center  > Scripting Help  > how do i make a message appear at a certain time