Hello, everyone! i’m currently trying to Enable a Countdown when the game should be delayed i tried like 3, or 4 methods and i can get nothing really working,
This is the Base script i have written already the Countdown should play sync to the wait(30). here is also a screen out of my Gui tab so you can see what is already setup.
local button = script.Parent
local function leftClick()
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.StartGui.Enabled = false
end
wait(30)
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.StartGui.Enabled = true
end
end
button.MouseButton1Click:Connect(leftClick)
i know this Topic is kinda messi but if someone could walk me trough how i would set this up i would be very grateful as always
in the already setup local script is currently this code inside
local time = 30
while wait(1) do
if time == 0 then
script.Parent.Text = "Times up!"
break
else
script.Parent.Text = tostring(time) --sets onscreen gui timer
time = time - 1
end
end
but when ever i try to Just enable the script it doesn’t seem to work.
the Start gui is irrelevant it’s only needed to detect that the Button was pressed also im not really having trouble with the Gui just with enabling the script so its sync with the first script.
Sorry for not understanding, but, actually I think that the problem is not that the code doesnt run when you enable the script. You are sure you are really enabling the right script, and its really enabled by using prints? In the first script you sent the only Enabled property I see is from this line: v.PlayerGui.StartGui.Enabled = true
So I supposed thats the script you want to enable in order to run its code. Cause the while loop code should run without issues:
warn("This local script started")
local Time = 5
while wait(1) do
if Time == 0 then
warn("Reached end:", Time)
--script.Parent.Text = "Times up!"
break
else
warn(Time)
--script.Parent.Text = tostring(time) --sets onscreen gui timer
Time -= 1
end
end
So like this? now the first script runs the Code i modified it a bit so it makes sense but it still doesn’t work but it should, i even got the warn.
local button = script.Parent
local function leftClick()
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.StartGui.Enabled = false
v.PlayerGui.CountdownGui.Enabled = true
end
warn("This local script started")
local Time = 30
while wait(30) do
if Time == 0 then
warn("Reached end:", Time)
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.CountdownGui.Countdown.Text = "Times up!"
end
break
else
warn(Time)
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.CountdownGui.Countdown.Text = tostring(time) --sets onscreen gui timer
Time -= 1
end
end
end
for i,v in pairs(game.Players:GetPlayers()) do
v.PlayerGui.StartGui.Enabled = true
end
end
button.MouseButton1Click:Connect(leftClick)
That is a local script, not taking in count other players only the one that runs it. Then no need to run this line on that script for i,v in pairs(game.Players:GetPlayers()) do
That would be for a server line that would fire clients to update the countdown, the script you are showing could work for a “personal” client button showing a countdown, not a global one managed by server
You don’t need to run a for loop every time to check for all the players when you’re running a local script, basically meaning it is client sided, you want to find your player and nobody elses…
Code
local players = game:GetService("Players")
local player = players.LocalPlayer
local button = script.Parent
local count = 30
local decreaseAmount = 1
local function Clicked()
player.PlayerGui.StartGui.Enabled = false
player.PlayerGui.CountdownGui.Enabled = true
--
repeat
player.PlayerGui.CountdownGui.TextButton.Text = "Time: "..count..".."
count -= decreaseAmount
wait(decreaseAmount)
until count == 0
--
player.PlayerGui.CountdownGui.TextButton.Text = "Reached "..count..", time up."
player.PlayerGui.StartGui.Enabled = true
end
button.MouseButton1Click:Connect(Clicked)