Categories > Exploiting > Roblox >

[RELEASE] Gui Hide Library

Posts: 60

Threads: 19

Joined: Jul, 2020

Reputation: 0

Posted

I Call this library "Blackout Hide". I give it this name because it's used for my serverside, but can be used for basic exploit scripts to hide it or not. it's very simple to understand and works like a charm.

Basically, what we need to do first is add a table to our local script, you can call it whatever.

----
local configs = {}
----

then, inside this table, we are gonna create a few settings.

we are going to create a parent variable, then 2 others. one true, one false, then where your close or hide button is.

----
local configs = {
    trueValue = true
    falseValue = false
    button = yourButtonVariable
}
----

now, we are gonna make it where if we press our button, the gui disappears, or whatever you want to disappear does. we also will make a bool value

----

local isHidden = Instance.new("BoolValue", Configs.Button)

isHidden.Name = "AnyName"

isHidden.Value = Configs.falseValue

 

Configs.Button.MouseButton1Click:Connect(function()

if isHidden.Value == Configs.falseValue then

isHidden.Value = Configs.tryeValue

yourGui.visible = false

end)

----

if you want it, then ill leave the model link. it may look very different because it was made for a serverside but you should still be able to implement it in to your script(s)

Model

  • 0

I Know Mafs
"Flip Phones Are Overated... Really. They Are" - TracedPoints, 2020

 

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )