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

Why my gui isn't opening when I click the key?

Asked by 6 years ago

With this script I want to open/close my gui with an animation when I press *. I'm learning lua and I'm not very good so maybe someone can fix my script and explain me why isn't working.

This is my script:

01wait()
02local frame = script.Parent.Parent.Parent.Parent.Parent:WaitForChild('MODmenu').Frame
03local toggle = false
04local Player = game.Players.LocalPlayer --TODO: get service
05local Mouse = Player:GetMouse()
06local k = script.Parent.Parent.Parent.Key.Value
07local key = string.lower(k)
08 
09Mouse.KeyDown:connect(function(Key)
10   if (Key==key)then
11    if toggle == false then
12    frame:TweenPosition(UDim2.new(0,0,0,0), 'Out', 'Bounce', 1)
13    script.Parent.Text = "* to close"
14    toggle = true
15    else
View all 22 lines...

(note: they key is in a value)

1 answer

Log in to vote
0
Answered by
Y_VRN 246 Moderation Voter
6 years ago

It's probably easier to use UserInputService instead. Just about the value in the script, you can just assign the variable a value directly in the script, like so: variable = "value". Applies to all value types.

Anyways: I changed (probably) a lot in your code, so this should work:

01wait()
02local frame = script.Parent.Parent.Parent.Parent.Parent.MODmenu.Frame
03 
04-- If the "MODmenu" is not yet in the UI, replace with WaitForChild(), like the previous
05-- sample you have shown. If not, keep it the same.
06 
07local toggle = false
08local Player = game.Players.LocalPlayer
09local UIP = game:GetService("UserInputService")
10local k = Enum.KeyCode.KeypadMultiply -- Trying to use Enum.KeyCode.Asterisk doesn't seem to work. KeypadMultiply should do the trick.
11 
12 
13UIP.InputBegan:Connect(function(Key)
14    if Key.KeyCode == k then
15        if toggle == false then
View all 25 lines...

Place this code inside a LocalScript instead of a normal Script. This is due to ROBLOX's kinda recent update I think.

Ad

Answer this question