-- Note this script is only for the Call a Moderator UI. The full script be will posted soon.
script.Parent.MouseButton1Click:Connect(function()
if script.Parent.Text == "CallMod" then
script.Parent.Parent.CallModFrame.Visible = true
script.Parent.Text = "Close"
elseif script.Parent.Text == "Close" then
script.Parent.Parent.CallModFrame.Visible = false
script.Parent.Text = "Call a Moderator"-- The text that shows on the UI for the toogle UI.
end