Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

[FIXED BY ME]My timer isnt working any help??? (Timer text wont change or not even show at all)

Asked by 3 years ago
Edited 3 years ago

I am in development of a game called "Survive Jason!!! (BETA) and my timer text wont show up it will just stay at default this is what i got...

timer = script.Parent
val = game.ReplicatedStorage.Timer


while true do
    val.Value = 20
    wait(1)
    val.Value = val.Value - 1
    timer.Text = val.Value
    if val.Value == 0 then
        value = game.ReplicatedStorage.Value
        value.Value = 1
        timer.Visible = false

        end
    end

all help appreciated

0
i had to get rid of the val.Value =20 because it will keep changing up to 20 Lamborghinihurican0 4 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

i had to get rid of the val.Value =20 because it will keep changing up to 20

Ad

Answer this question