why does the first function run bot not the second one?
01 | skills.InputBegan:connect( function (input) |
02 | if input.UserInputType = = Enum.UserInputType.MouseButton 1 then |
04 | if kendo and specials and kido.Visible = = false then |
07 | specials.Visible = true |
11 | specials.Visible = false |
15 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
16 | specials.InputBegan:connect( function (input) |
17 | if input.UserInputType = = Enum.UserInputType.MouseButton 1 then |
19 | if specialScreen.Visible = = false then |
20 | specialScreen.Visible = true |
22 | specialScreen.Visible = false |
the function on the top runs perfectly but the second one doesnt even run at all