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

No error but not working it dosent even show that it was cloned in explorer?

Asked by 5 years ago
Edited 5 years ago

no errors, enabled is a Image button

spawn(function()
        local q = math.floor(Enabled.Time.Value / 60)
        local e = Enabled.Time.Value - (q * 60)
        local cl = script["Example(Craft)"]:Clone()
        cl.Image = Enabled.Image
        cl.Parent = script.Parent.QuedItems.Holder
        while wait(1) do

        cl.TextLabel.Text = tostring( q) .. "m " .. tostring(e) .. "s" 
        if e == 0 then
            if q == 0 then
                break
            end
            q = q - 1
            e = 59
        else
            e = e - 1
        end
        end
        end)
1
start with indenting your code first User#19524 175 — 5y
0
Idk xxcoordinatorxx 135 — 5y

Answer this question