Text button function problems? [Solved]
Asked by
5 years ago Edited 5 years ago
So my question is this: What's wrong with my code? and how can I fix it?
01 | local Input_Service = game:GetService( "UserInputService" ) |
03 | local Select_Color = Color 3. new( 1 , 1 , 1 ) |
04 | local Default_Color = Color 3. new( 0.5 , 0.5 , 0.5 ) |
06 | local Buttons = script.Parent.Buttons |
08 | local function New_Bind(Key,Text_Front) |
09 | Key.Text = "Enter new key..." |
10 | Key.TextColor 3 = Select_Color |
11 | Input_Service.InputBegan:Connect( function (input) |
12 | local Key = string.split( tostring (input.KeyCode), "." ) |
13 | Key.TextColor 3 = Default_Color |
14 | Key.Text = Text_Front.. '(' ..Key [ 3 ] .. ')' |
15 | print (Text_Front.. '(' ..Key [ 3 ] .. ')' ) |
19 | Buttons.KEY_Button.MouseButton 1 Click:Connect( function () |
20 | New_Bind(Buttons.KEY_Button, 'Key =' ) |
What this is supposed to do: When you click on a text button("KEY_Button"), the button's text changes to "Enter new key...".
Then it waits for the next key you press, and changes the button's text again depending on what the key you pressed was.
The function then "stops" or "resets" so it doesn't fire when you press any more buttons.
(until you click the text button again)
I'm having two problems with it: The first is that it isn't changing the buttons text the second time. (to "Key =The key pressed")
and the second problem is that I'm unsure of the best way to stop the function once a button has been pressed, so it stops firing every time I press a button after the first time.
(until I press the text button again)