This is in a LocalScript in an ImageButton in a ScreenGui in StarterGui.
01 | player = game.Players.LocalPlayer |
02 | timer = script.Parent.Timer |
03 | enabled = true |
04 |
05 | function 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 seconds 2 = seconds - 60 |
15 | local secondsdisplay = seconds 2 |
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?
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.
01 | local player = game.Players.LocalPlayer |
02 | local enabled = true |
03 |
04 | script.Parent.MouseButton 1 Click: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 |
1 | timer = script.Parent:WaitForChild( "Timer" ) |
Try that. It might not work tho...