LocalScript
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | local startergui = game:GetService( "StarterGui" ) |
3 | startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false ) |
4 | script.Parent.LocalScript 2. Disabled = false |
5 | script.Disabled = true |
6 | end ) |
LocalScript2
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | local startergui = game:GetService( "StarterGui" ) |
3 | startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true ) |
4 | script.Parent.LocalScript.Disabled = false |
5 | script.Disabled = true |
6 | end ) |
How to make those 2 Chat disabler / enabler functions into one Script!?!
Use variables and if function
01 | local on = false |
02 | script.Parent.MouseButton 1 Click:connect( function () |
03 | if on = = true then --checks if on is set to true |
04 | on = false --setting on to false |
05 | local startergui = game:GetService( "StarterGui" ) |
06 | startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false ) |
07 | elseif on = = false then --checks if on is set to false |
08 | on = true --setting on to true |
09 | local startergui = game:GetService( "StarterGui" ) |
10 | startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true ) |
11 | end |
12 | end ) |