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

Script to make a gui invisible or visible not working. Why is this happening?

Asked by 6 years ago

I have made a certain key that makes a frame visible or invisible. This isn't working. Can someone tell me why and how to fix it?

01local Player = game.Players.LocalPlayer
02local Mouse = Player:GetMouse()
03local CoolFrame = game.StarterGui.ScreenGui.Frame
04 
05Mouse.KeyDown:Connect(function(Key)
06    Key = Key:lower()
07    if Key == 'e' then
08        if CoolFrame.Visible == false then
09            CoolFrame.Visible = true
10        else
11            CoolFrame.Visible = false
12        end
13    end
14end)
0
Keydown is deprecated. joshthegamer456 93 — 6y

5 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

1st. Deprecated Code 2nd. You can't access GUIs from starter gui once you're playing. It's cloned to playergui.

01uis = game:GetService("UserInputService")
02p = game.Players.LocalPlayer
03Frame = p.PlayerGui.ScreenGui.Frame
04uis.InputBegan:Connect(function(k, gpe)
05if not gpe and k.KeyCode == Enum.KeyCode.E then
06if Frame.Visible == false then
07Frame.Visible = true
08else
09Frame.Visible = false
10end
11end)
Ad
Log in to vote
0
Answered by 6 years ago

You can't acces starter gui like that.

What you can do is put the local script inside of a screen gui and then define the frame like script.Parent:WaitForChild("FrameName")

Other possibility is to have your local script whereever you have it now and access it through PlayerGui like this: player.PlayerGui:WaitForChild("ScreenGui"):WaitForChild("FrameName")

Now I won't rewrite your code for you but that's what you should consider

0
Tried both of your ideas, neither worked. ChasingNachos 133 — 6y
0
you didn't edit it well g1o2r3d4a5n6 350 — 6y
Log in to vote
0
Answered by 6 years ago
01local Player = game.Players.LocalPlayer
02local Mouse = Player:GetMouse()
03local CoolFrame = Player.PlayerGui.ScreenGui.Frame
04 
05Mouse.KeyDown:Connect(function(Key)
06    Key = Key:lower()
07    if Key == 'e' then
08        if CoolFrame.Visible == false then
09            CoolFrame.Visible = true
10        else
11            CoolFrame.Visible = false
12        end
13    end
14end)

It's player.playergui NOT startergui, startergui contents just get copied to the playergui.

BTW~~~~do not use Mouse.KeyDown as it is deprecated, use the Context Action Service!

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Three things, Mouse.KeyDown is deprecated, use the UserInputService. Also, this needs to be on the Client side in a Local Script. And finally, you are changing the StarterGui which will only take into affect after you reset and it gives you a new gui. You need to use the PlayerGui.

01local UserInputService = game:GetService("UserInputService")
02 
03local Player = game.Players.LocalPlayer
04 
05local CoolFrame = Player:WaitForChild("PlayerGui").ScreenGui.Frame
06 
07local function onInputBegan(input,gameProcessed)
08    if not gameProcessed then
09        if input.UserInputType == Enum.UserInputType.Keyboard then
10            local keyPressed = input.KeyCode
11            if keyPressed == Enum.KeyCode.E then
12                if CoolFrame.Visible == false then
13                    CoolFrame.Visible = true
14                else
15                    CoolFrame.Visible = false
View all 22 lines...
0
I am getting this error in output: 16:47:28.349 - Players.LordKing_GeorgeIII.PlayerGui.KeyDown:11: 'then' expected near '=' ChasingNachos 133 — 6y
0
Above: on line 11, add two "="'s instead of one. ShutokouBattle 227 — 6y
0
^ my bad climethestair 1663 — 6y
Log in to vote
-1
Answered by 6 years ago
Edited 6 years ago

:lower() does not exist use string.lower() instead or even better use Enum

0
neither strategy worked. ChasingNachos 133 — 6y
0
There are no enums for that, and :lower() does exist. User#19524 175 — 6y
0
There are no enums for that, and :lower() does exist. User#19524 175 — 6y

Answer this question