[go: up one dir, main page]

0% found this document useful (0 votes)
57 views1 page

Explorer

The document is a script configuration that enables various features such as Explorer and GUI elements in a game environment. It includes functionality to toggle the Explorer GUI with a key press. The script utilizes local player and mouse interactions to manage the GUI's visibility.

Uploaded by

hatb4095
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views1 page

Explorer

The document is a script configuration that enables various features such as Explorer and GUI elements in a game environment. It includes functionality to toggle the Explorer GUI with a key press. The script utilizes local player and mouse interactions to manage the GUI's visibility.

Uploaded by

hatb4095
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

--// Original file made by Rocky2u, edited by Leafy //--

Enable_ScriptBar = true
Enable_Explorer = true
Enable_YourMom_Gui = true
Enable_CommandScript = true
Enable_PhantomX_Check = true
Enable_TwistedMurderer = true
Enable_RoXploit5_Check = true
Enable_ResmoMeme_Check = true

local Player = game.Players.LocalPlayer


local Mouse = Player:GetMouse()

--// Explorer

if Enable_Explorer == true then


game:GetObjects('rbxassetid://289421038')[1].Parent = game.CoreGui

local Explorer = game.CoreGui:WaitForChild('ExplorerGui').Holder

loadstring(Explorer.ExplorerPanel.LocalScript.Source)()
loadstring(Explorer.PropertiesPanel.Properties.Source)()

local Opened = false

Mouse.KeyDown:connect(function(Key)
if Key:byte() == 23 then
if Opened == false then
Explorer:TweenPosition(UDim2.new(0, 0, 0, 0), 'Out', 'Quad', 0.5)
Opened = true
elseif Opened == true then
Explorer:TweenPosition(UDim2.new(0, 300, 0, 0), 'Out', 'Quad', 0.5)
Opened = false
end
end
end)
end

You might also like