local Player = game.Players.LocalPlayer
local GUI = Instance.new("ScreenGui", Player.PlayerGui)
local TitleFrame = Instance.new("Frame", GUI)
TitleFrame.Size = UDim2.new(0.6, 0, 0.1, 0)
TitleFrame.Position = UDim2.new(0.3, 0, 0.3, 0)
TitleFrame.BackgroundColor3 = Color3.new(0, 0, 0)
TitleFrame.Active = true
TitleFrame.Draggable = true
local Title = Instance.new("TextLabel", TitleFrame)
Title.Size = UDim2.new(0.7, 0, 1, 0)
Title.Position = UDim2.new(0, 0, 0, 0)
Title.Text = "Remote Control Panel"
Title.TextColor3 = Color3.new(1, 1, 1)
Title.BackgroundTransparency = 1
Title.TextScaled = true
Title.TextXAlignment = Enum.TextXAlignment.Left
Title.TextWrapped = true
local CloseButton = Instance.new("TextButton", TitleFrame)
CloseButton.Size = UDim2.new(0.1, 0, 1, 0)
CloseButton.Position = UDim2.new(0.9, 0, 0, 0)
CloseButton.Text = "X"
CloseButton.TextColor3 = Color3.new(1, 1, 1)
CloseButton.BackgroundColor3 = Color3.new(0.5, 0, 0)
CloseButton.MouseButton1Click:Connect(function()
GUI:Destroy()
end)
local ToggleButton = Instance.new("TextButton", TitleFrame)
ToggleButton.Size = UDim2.new(0.1, 0, 1, 0)
ToggleButton.Position = UDim2.new(0.8, 0, 0, 0)
ToggleButton.Text = "-"
ToggleButton.TextColor3 = Color3.new(0, 0, 0)
ToggleButton.BackgroundColor3 = Color3.new(1, 1, 0)
local MainFrame = Instance.new("Frame", GUI)
MainFrame.Size = UDim2.new(0.6, 0, 0.4, 0)
MainFrame.Position = UDim2.new(0.3, 0, 0.4, 0)
MainFrame.BackgroundColor3 = Color3.new(0.2, 0.2, 0.2)
MainFrame.Visible = true
local ScriptList = Instance.new("ScrollingFrame", MainFrame)
ScriptList.Size = UDim2.new(1, 0, 1, 0)
ScriptList.Position = UDim2.new(0, 0, 0, 0)
ScriptList.CanvasSize = UDim2.new(0, 0, 0, 0)
ScriptList.BackgroundTransparency = 1
ScriptList.ScrollBarThickness = 8
local function createButton(parent, text, position, script)
local button = Instance.new("TextButton", parent)
button.Size = UDim2.new(0.9, 0, 0, 30)
button.Position = position
button.Text = text
button.BackgroundColor3 = Color3.new(0.3, 0.3, 0.3)
button.TextColor3 = Color3.new(1, 1, 1)
button.TextScaled = true
button.MouseButton1Click:Connect(function()
loadstring(script)()
end)
end
local scripts = {
{name = "RTT Tool", script = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/sovetskii-shashlik/RTT-Tool/refs/heads/main/RTT%20Tool"))()'},
{name = "QuirkyCMD", script = 'loadstring(game:HttpGet("https://gist.github.com/someunknowndude/38cecea5be9d75cb743eac8b1eaf6758/raw"))()'},
{name = "Krunox", script = 'loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-Krunox-13336"))()'},
{name = "Cmd admin", script = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/lxte/cmd/main/testing-main.lua"))()'},
{name = "NamelessAdmin2.0", script = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/toyahfur/Nameless-Admin-2.0/main/unfinished-source-code"))()'},
{name = "Comet", script = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/Comet"))()'},
{name = "Harked Reborn", script = 'loadstring(game:HttpGet("https://raw.githubusercontent.com/JxcExploit/Harkedv2-script/main/Leaked-v2hardked"))()'},
{name = "Destructed_Hex's", script = 'loadstring(game:HttpGet("https://github.com/sovetskii-shashlik/Destructed-hex/raw/refs/heads/main/Destructed%20hex%20gui"))()'},
}
for i, scriptData in ipairs(scripts) do
createButton(ScriptList, scriptData.name, UDim2.new(0.05, 0, 0, (i-1)*35), scriptData.script)
ScriptList.CanvasSize = UDim2.new(0, 0, 0, i * 35)
end
local isMinimized = false
local function updateMainFramePosition()
MainFrame.Position = UDim2.new(TitleFrame.Position.X.Scale, TitleFrame.Position.X.Offset, TitleFrame.Position.Y.Scale + TitleFrame.Size.Y.Scale, TitleFrame.Position.Y.Offset)
end
TitleFrame.Changed:Connect(function(property)
if property == "Position" then
updateMainFramePosition()
end
end)
updateMainFramePosition()
ToggleButton.MouseButton1Click:Connect(function()
if isMinimized then
MainFrame.Visible = true
ToggleButton.Text = "-"
isMinimized = false
else
MainFrame.Visible = false
ToggleButton.Text = "+"
isMinimized = true
end
end)
print"heroborina"