Why is my text not displaying whenever I go into "Play" mode in Studio???
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.
03 | local reloading = false |
04 | CannonGUIS = game.StarterGui.GameGUIs.CannonStuff |
06 | function onKeyPress(inputObject, gameProcessedEvent) |
07 | if inputObject.KeyCode = = Enum.KeyCode.F then |
10 | script.Parent.Parent.Barrel.ExplodeSound 2 :Play() |
18 | if not reloading and ammoLeft > 0 then |
19 | CannonGUIS.Ammo.ReloadingText.Visible = true |
23 | CannonGUIS.Ammo.Amount.Value = CannonGUIS.Ammo.Amount.Value - 1 |
25 | ammoLeft = ammoLeft - 1 |
27 | CannonGUIS.Ammo.ReloadingText.Visible = false |
32 | elseif ammoLeft = = 0 then |
33 | CannonGUIS.Ammo.NoMoreCannonBalls.Visible = true |
37 | game:GetService( "UserInputService" ).InputBegan:connect(onKeyPress) |
Oh and this script is inside a Model in Workspace.
Anyone know what's wrong? Thanks!