Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// Rocky2u's Auto Execution File //--
- --// Works with Seven and Elysian
- --// Credit //--
- --// Rocky2u // YourMom Gui & Command Script
- --// Murphy // PhantomX
- --// KrystalTeam // Ro-Xploit 5.0
- --// ProtectiveManEgg // Command Script
- Enable_ScriptBar = true
- Enable_Explorer = true
- Enable_YourMom_Gui = true
- Enable_CommandScript = true
- Enable_PhantomX_Check = true
- Enable_RoXploit_5 = false
- Enable_PME_2 = false
- local Player = game.Players.LocalPlayer
- local Mouse = Player:GetMouse()
- --// Script Bar
- if Enable_ScriptBar == true then
- local CoreGui = game.CoreGui.RobloxGui
- local S = Instance.new('ScreenGui', CoreGui)
- S.Name = ''
- local T = Instance.new('TextBox', S)
- T.Name = ''
- T.Position = UDim2.new(0, 0, 1, 20)
- T.Size = UDim2.new(1, 0, 0, -20)
- T.BackgroundColor3 = Color3.new(0, 0, 0)
- T.BackgroundTransparency = 0.5
- T.TextColor3 = Color3.new(1, 1, 1)
- T.TextXAlignment = Enum.TextXAlignment.Left
- T.ClearTextOnFocus = true
- T.TextTransparency = 0
- T.FontSize = 'Size12'
- T.BorderSizePixel = 0
- T.FocusLost:connect(function(enterpressed)
- if enterpressed and T.Text ~= '' then
- spawn(function()
- if T.Text:sub(1,1) == ';' then
- _G.exec_cmd(T.Text:sub(2))
- else
- script = Instance.new('LocalScript', CoreGui)
- local sc, loaderr = loadstring(T.Text, '=' .. script:GetFullName())
- if not sc then
- error(loaderr)
- else
- sc()
- end
- end
- end)
- end
- T:TweenPosition(UDim2.new(0, 0, 1, 20), 'Out', 'Quad', 0.5)
- T.TextTransparency = 0.5
- end)
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(Key)
- if Key == '\\' then
- T:CaptureFocus()
- T:TweenPosition(UDim2.new(0, 0, 1, 0), 'Out', 'Quad', 0.5)
- end
- end)
- else
- return
- end
- --// 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() == 22 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
- --// Your Mom Gui
- if Enable_YourMom_Gui == true then
- loadstring(game:GetObjects('rbxassetid://337743103')[1].Source)()
- else
- return
- end
- --// Rocky2u's Command Script
- if Enable_CommandScript == true then
- loadstring(game:GetObjects('rbxassetid://295850902')[1].Source)()
- else
- return
- end
- --//PhantomX
- if Enable_PhantomX_Check == true then
- if game.PlaceId == 292439477 then
- game:GetObjects('rbxassetid://311949717')[1].Parent = game.CoreGui
- local PhantomX = game.CoreGui:WaitForChild('PhantomX')
- local script = Instance.new('Script', game.CoreGui)
- script.Name = ''
- script.Source = PhantomX.CONTROL.Source
- loadstring(script.Source)()
- end
- else
- return
- end
- --// Ro-Exploit 5.0
- if Enable_RoXploit_5 == true then
- loadstring(game:GetObjects('rbxassetid://288646117')[1].Source)()
- else
- return
- end
- --// PME's Command Script 2.0
- if Enable_PME_2 == true then
- loadstring(game:GetObjects('rbxassetid://303367841')[1].Source)()
- else
- return
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement