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

Why does this script only work in studio?

Asked by 10 years ago

This is in a LocalScript in an ImageButton in a ScreenGui in StarterGui.

01player = game.Players.LocalPlayer
02timer = script.Parent.Timer
03enabled = true
04 
05function onClick(click)
06    if player.ItemCounter["Quick Mushroom"].Value > 0 and enabled == true then
07        enabled = false
08        player.ItemCounter["Quick Mushroom"].Value = player.ItemCounter["Quick Mushroom"].Value - 1
09        player.Character.Humanoid.WalkSpeed = 48
10        timer.Visible = true
11        timer.Text = "2:00"
12        minutes = 2
13        for seconds = 120, 0, -1 do
14            local seconds2 = seconds - 60
15            local secondsdisplay = seconds2
View all 43 lines...

The script runs just fine in studio, but when playing in-game, an error appears on Line 2 stating that "Timer" is not a valid member of ImageButton. However, when going into Studio, there is indeed a TextLabel in the ImageButton named "Timer". What's going on here?

2
len means length. It returns the length of a string. Wow I'm late. EzraNehemiah_TF2 3552 — 9y
0
Haha yeah you are, but I appreciate the answer because I still didn't know what len was until now. IcyArticunoX 355 — 9y

2 answers

Log in to vote
2
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
10 years ago

The problem is that sometimes the script loads before the actual gui, so 'Timer' may be nil at the moment that your script excecutes.

To fix this, I suggest waiting until 'Timer' has loaded, or check if it has loaded.

Also, your timer could use some touch ups.

01local player = game.Players.LocalPlayer
02local enabled = true
03 
04script.Parent.MouseButton1Click:connect(function()
05    script.Parent:WaitForChild("Timer")
06    local timer = script.Parent:FindFirstChild("Timer")
07    local m = player.ItemCounter["Quick Mushroom"]
08    if m.Value > 0 and enabled == true then
09        enabled = false
10        m.Value = m.Value - 1
11        player.Character.Humanoid.WalkSpeed = 48
12        timer.Visible = true
13        timer.Text = "2:00"
14        local minutes = 2
15        for i = (minutes * 60), 0, -1 do
View all 27 lines...
0
This is incredibly helpful. Thanks! (Also, follow-up question: what does "len" mean on line 18?) IcyArticunoX 355 — 10y
Ad
Log in to vote
1
Answered by 10 years ago
1timer = script.Parent:WaitForChild("Timer")

Try that. It might not work tho...

Answer this question