Global Countdown Gui | Roblox Studio Tutorial

preview_player
Показать описание
Global Countdown Gui | Roblox Studio Tutorial

=================================================

- Remember to like, subscribe and turn on the notifications for more videos like this!

- Give a video suggestion in the comments for a shout-out!

Рекомендации по теме
Комментарии
Автор

Great video, I hope to see more of this content!

bloxdeveloper
Автор

Do you have any way to like make it change the server like a live event or somethinng?

Demiizrr
Автор

A script to make a sound when the tool is equipped? But everyone hears the sound and not you

coqueydev
Автор

Script:


local mFloor = math.floor
local Stop = 0

while true do wait(1)
wait( )
local Time = 1672531200 - tick( )
local Days = mFloor((Time/60/60/24) %(365 +0.2425))
local Hours = mFloor((Time/60) % 24)
local Minutes = mFloor((Time/60)%60)
local Seconds = mFloor((Time % 60)

if Stop == 0 then
script.Parent.Time.Text =
end
if Days == 0 and Hours == 0 and Minutes == 0 and Seconds == 0 then
Stop = 1
script.Parent.Time.Text = "Happy New Year!"
end
end

Dev_dom
Автор

Hey i want a tutorial for tool equip sound (please i want the sound on handle not tool cuz they will hear it)

vichix
Автор

Script:

local mFloor = math .floor
local Stop = 0

while true do wait(1)
wait()
local Time = 0000 - tick() --set '0000' to the time your timer ends (in seconds)
local Days = mFloor((Time/60/60/24) %(365 +0.2425))
local Hours = mFloor((Time/60/60) % 24)
local Minutes = mFloor((Time/60)%60)
local Seconds = mFloor(Time % 60)

if Stop == 0 then
script.Parent.Time.Text = Days.."D "..Hours.."H "..Minutes.."M "..Seconds.."S"
end

if Days == 0 and Hours == 0 and Minutes == 0 and Seconds == 0 then
stop = 1
script.Parent.Time.Text = "Text" --Change 'Text' To the text you want to be displayed when the timer ends
end
end

tntgames
Автор

it looks like this now: 57:9(minutes:seconds), but it should be 57:09, can anyone fix this?

Tibbe