SHOW:
|
|
- or go back to the newest paste.
1 | --// Rocky2u's Auto Execution File //-- | |
2 | ||
3 | --// Works with Seven and Elysian | |
4 | ||
5 | --// Credit //-- | |
6 | --// Rocky2u // YourMom Gui & Command Script | |
7 | --// Murphy // PhantomX | |
8 | --// KrystalTeam // Ro-Xploit 5.0 | |
9 | --// ProtectiveManEgg // Command Script | |
10 | ||
11 | Enable_ScriptBar = true | |
12 | Enable_Explorer = true | |
13 | Enable_YourMom_Gui = true | |
14 | Enable_CommandScript = true | |
15 | Enable_PhantomX_Check = true | |
16 | ||
17 | Enable_RoXploit_5 = false | |
18 | Enable_PME_2 = false | |
19 | ||
20 | ||
21 | ||
22 | ||
23 | ||
24 | ||
25 | ||
26 | ||
27 | ||
28 | ||
29 | ||
30 | ||
31 | ||
32 | ||
33 | ||
34 | ||
35 | ||
36 | ||
37 | ||
38 | ||
39 | local Player = game.Players.LocalPlayer | |
40 | local Mouse = Player:GetMouse() | |
41 | ||
42 | --// Script Bar | |
43 | ||
44 | if Enable_ScriptBar == true then | |
45 | local CoreGui = game.CoreGui.RobloxGui | |
46 | local S = Instance.new('ScreenGui', CoreGui) | |
47 | S.Name = '' | |
48 | local T = Instance.new('TextBox', S) | |
49 | T.Name = '' | |
50 | T.Position = UDim2.new(0, 0, 1, 20) | |
51 | T.Size = UDim2.new(1, 0, 0, -20) | |
52 | T.BackgroundColor3 = Color3.new(0, 0, 0) | |
53 | T.BackgroundTransparency = 0.5 | |
54 | T.TextColor3 = Color3.new(1, 1, 1) | |
55 | T.TextXAlignment = Enum.TextXAlignment.Left | |
56 | T.ClearTextOnFocus = true | |
57 | T.TextTransparency = 0 | |
58 | T.FontSize = 'Size12' | |
59 | T.BorderSizePixel = 0 | |
60 | ||
61 | T.FocusLost:connect(function(enterpressed) | |
62 | if enterpressed and T.Text ~= '' then | |
63 | spawn(function() | |
64 | if T.Text:sub(1,1) == ';' then | |
65 | _G.exec_cmd(T.Text:sub(2)) | |
66 | else | |
67 | script = Instance.new('LocalScript', CoreGui) | |
68 | local sc, loaderr = loadstring(T.Text, '=' .. script:GetFullName()) | |
69 | if not sc then | |
70 | error(loaderr) | |
71 | else | |
72 | sc() | |
73 | end | |
74 | end | |
75 | end) | |
76 | end | |
77 | T:TweenPosition(UDim2.new(0, 0, 1, 20), 'Out', 'Quad', 0.5) | |
78 | T.TextTransparency = 0.5 | |
79 | end) | |
80 | ||
81 | game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(Key) | |
82 | if Key == '\\' then | |
83 | T:CaptureFocus() | |
84 | T:TweenPosition(UDim2.new(0, 0, 1, 0), 'Out', 'Quad', 0.5) | |
85 | end | |
86 | end) | |
87 | ||
88 | else | |
89 | return | |
90 | end | |
91 | ||
92 | --// Explorer | |
93 | ||
94 | if Enable_Explorer == true then | |
95 | game:GetObjects('rbxassetid://289421038')[1].Parent = game.CoreGui | |
96 | ||
97 | local Explorer = game.CoreGui:WaitForChild('ExplorerGui').Holder | |
98 | ||
99 | loadstring(Explorer.ExplorerPanel.LocalScript.Source)() | |
100 | loadstring(Explorer.PropertiesPanel.Properties.Source)() | |
101 | ||
102 | local Opened = false | |
103 | ||
104 | Mouse.KeyDown:connect(function(Key) | |
105 | if Key:byte() == 22 then | |
106 | if Opened == false then | |
107 | Explorer:TweenPosition(UDim2.new(0, 0, 0, 0), 'Out', 'Quad', 0.5) | |
108 | Opened = true | |
109 | elseif Opened == true then | |
110 | Explorer:TweenPosition(UDim2.new(0, 300, 0, 0), 'Out', 'Quad', 0.5) | |
111 | Opened = false | |
112 | end | |
113 | end | |
114 | end) | |
115 | end | |
116 | ||
117 | --// Your Mom Gui | |
118 | ||
119 | if Enable_YourMom_Gui == true then | |
120 | loadstring(game:GetObjects('rbxassetid://337743103')[1].Source)() | |
121 | else | |
122 | return | |
123 | end | |
124 | ||
125 | --// Rocky2u's Command Script | |
126 | ||
127 | if Enable_CommandScript == true then | |
128 | loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)() | |
129 | else | |
130 | return | |
131 | end | |
132 | ||
133 | --//PhantomX | |
134 | ||
135 | if Enable_PhantomX_Check == true then | |
136 | if game.PlaceId == 292439477 then | |
137 | game:GetObjects('rbxassetid://311949717')[1].Parent = game.CoreGui | |
138 | local PhantomX = game.CoreGui:WaitForChild('PhantomX') | |
139 | local script = Instance.new('Script', game.CoreGui) | |
140 | script.Name = '' | |
141 | script.Source = PhantomX.CONTROL.Source | |
142 | loadstring(script.Source)() | |
143 | end | |
144 | else | |
145 | return | |
146 | end | |
147 | ||
148 | --// Ro-Exploit 5.0 | |
149 | ||
150 | if Enable_RoXploit_5 == true then | |
151 | loadstring(game:GetObjects('rbxassetid://288646117')[1].Source)() | |
152 | else | |
153 | return | |
154 | end | |
155 | ||
156 | --// PME's Command Script 2.0 | |
157 | ||
158 | if Enable_PME_2 == true then | |
159 | loadstring(game:GetObjects('rbxassetid://303367841')[1].Source)() | |
160 | else | |
161 | return | |
162 | end |