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

Why is my text not displaying whenever I go into "Play" mode in Studio???

Asked by
Nep_Ryker 131
7 years ago

So, I made and scripted a reloading mechanic for my cannon. They work completely fine if I click "Run" but if I were to click "Play" the GUI would not work at all. For example, If I press "R" on Run mode, a text will appear saying "reloading" for 2 seconds. But when I press "R" in Play mode, the text will not appear at all. Here is the script that toggles the reloading stuff.

01local ammoLeft = 20
02local reloaded = false -- The amount of cannon balls reloaded (Should only be either true or false)
03local reloading = false
04CannonGUIS = game.StarterGui.GameGUIs.CannonStuff -- All GUI's related to the cannon.
05 
06function onKeyPress(inputObject, gameProcessedEvent)
07    if inputObject.KeyCode == Enum.KeyCode.F then
08        if reloaded then
09            Fire()
10            script.Parent.Parent.Barrel.ExplodeSound2:Play()
11        else
12            Reload()
13        end
14    end
15end
View all 37 lines...

Oh and this script is inside a Model in Workspace.

Anyone know what's wrong? Thanks!

0
Your problem is easier than mine. Froredion 15 — 7y
0
Haha. Nep_Ryker 131 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago

That is because you are only changing the StarterGui, not the Player's Gui, try putting this script to the StarterGui and change

1CannonGUIS = game.StarterGui.GameGUIs.CannonStuff

to

1CannonGUIS = script.Parent.GameGUIs.CannonStuff
0
Works like a charm, thanks mate. Nep_Ryker 131 — 7y
Ad

Answer this question