View difference between Paste ID: 733M7a9M and cnD3ha06
SHOW: | | - or go back to the newest paste.
1
--// Original file made by Rocky2u, edited by Leafy //--
2
3
Enable_ScriptBar = true
4
Enable_Explorer = true
5
Enable_YourMom_Gui = true
6
Enable_CommandScript = true
7
Enable_PhantomX_Check = true
8
Enable_TwistedMurderer = true
9
Enable_RoXploit5_Check = true
10
Enable_ResmoMeme_Check = true
11
12
13
14
15
16
17
18
19
20
21
local Player = game.Players.LocalPlayer
22
local Mouse = Player:GetMouse()
23
24
25
26
--// Explorer
27
28
if Enable_Explorer == true then
29
game:GetObjects('rbxassetid://289421038')[1].Parent = game.CoreGui
30
31
local Explorer = game.CoreGui:WaitForChild('ExplorerGui').Holder
32
33
loadstring(Explorer.ExplorerPanel.LocalScript.Source)()
34
loadstring(Explorer.PropertiesPanel.Properties.Source)()
35
36
local Opened = false
37
38
Mouse.KeyDown:connect(function(Key)
39
if Key:byte() == 23 then
40
if Opened == false then
41
Explorer:TweenPosition(UDim2.new(0, 0, 0, 0), 'Out', 'Quad', 0.5)
42
Opened = true
43
elseif Opened == true then
44
Explorer:TweenPosition(UDim2.new(0, 300, 0, 0), 'Out', 'Quad', 0.5)
45
Opened = false
46
end
47
end
48
end)
49
end