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

How to merge 2 localScripts to one localscript?(MOUSEBUTTON1GUI)?

Asked by 7 years ago
Edited 7 years ago

LocalScript

1script.Parent.MouseButton1Click:connect(function()
2local startergui = game:GetService("StarterGui")
3startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, false)
4script.Parent.LocalScript2.Disabled = false
5script.Disabled = true
6end)

LocalScript2

1script.Parent.MouseButton1Click:connect(function()
2local startergui = game:GetService("StarterGui")
3startergui:SetCoreGuiEnabled(Enum.CoreGuiType.Chat, true)
4script.Parent.LocalScript.Disabled = false
5script.Disabled = true
6end)

How to make those 2 Chat disabler / enabler functions into one Script!?!

1 answer

Log in to vote
0
Answered by
Bertox 159
7 years ago
Edited 7 years ago

Use variables and if function

01local on = false
02script.Parent.MouseButton1Click: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)
11end
12end)
0
not working andtheres no error Lolamtic 63 — 7y
0
dude with no script.Disabeld or Disabled = true Lolamtic 63 — 7y
0
oh forgot to remove lol Bertox 159 — 7y
0
Is it working? Bertox 159 — 7y
View all comments (3 more)
0
edit the anwer and remove thte script.Disabled part remove line 13-14 and 7-8 Lolamtic 63 — 7y
0
can you rate my answer please :3 Bertox 159 — 7y
0
Thx u did your job ;D ;) Lolamtic 63 — 7y
Ad

Answer this question