0% found this document useful (0 votes)
109 views3 pages

Dex Explorer - Lua

The document describes a Lua script for creating a graphical user interface (GUI) for the JJSploit script executor in Roblox. It includes various UI elements such as a frame, text labels, text boxes, and buttons, along with their properties and event connections for executing Lua scripts. The script also features a notification system to inform users about the JJSploit tool and its resources.

Uploaded by

ggcampone
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)
109 views3 pages

Dex Explorer - Lua

The document describes a Lua script for creating a graphical user interface (GUI) for the JJSploit script executor in Roblox. It includes various UI elements such as a frame, text labels, text boxes, and buttons, along with their properties and event connections for executing Lua scripts. The script also features a notification system to inform users about the JJSploit tool and its resources.

Uploaded by

ggcampone
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/ 3

-- Instances: 13 | Scripts: 1 | Modules: 0 | Tags: 0

local G2L = {};

-- StarterGui.JJSploitGui
G2L["1"] = Instance.new("ScreenGui",
game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui"));
G2L["1"]["Name"] = [[JJSploitGui]];
G2L["1"]["ZIndexBehavior"] = Enum.ZIndexBehavior.Sibling;

-- StarterGui.JJSploitGui.Frame
G2L["2"] = Instance.new("Frame", G2L["1"]);
G2L["2"]["ZIndex"] = 2;
G2L["2"]["BorderSizePixel"] = 0;
G2L["2"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
G2L["2"]["Size"] = UDim2.new(0.8, 0, 0.9, 0);
G2L["2"]["Position"] = UDim2.new(0.1, 0, 0.05, 0);
G2L["2"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
G2L["2"]["BackgroundTransparency"] = 0.5;

-- StarterGui.JJSploitGui.Frame.TextLabel
G2L["3"] = Instance.new("TextLabel", G2L["2"]);
G2L["3"]["BorderSizePixel"] = 0;
G2L["3"]["TextSize"] = 22;
G2L["3"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
G2L["3"]["FontFace"] = Font.new([[rbxasset://fonts/families/Roboto.json]],
Enum.FontWeight.Medium, Enum.FontStyle.Normal);
G2L["3"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
G2L["3"]["BackgroundTransparency"] = 1;
G2L["3"]["Size"] = UDim2.new(1, 0, 0, 50);
G2L["3"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
G2L["3"]["Text"] = [[JJSploit Script Executor]];

-- StarterGui.JJSploitGui.Frame.TextBox
G2L["4"] = Instance.new("TextBox", G2L["2"]);
G2L["4"]["CursorPosition"] = -1;
G2L["4"]["TextXAlignment"] = Enum.TextXAlignment.Left;
G2L["4"]["BorderSizePixel"] = 0;
G2L["4"]["TextWrapped"] = true;
G2L["4"]["TextSize"] = 22;
G2L["4"]["TextDirection"] = Enum.TextDirection.LeftToRight;
G2L["4"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
G2L["4"]["TextYAlignment"] = Enum.TextYAlignment.Top;
G2L["4"]["TextScaled"] = true;
G2L["4"]["BackgroundColor3"] = Color3.fromRGB(222, 222, 222);
G2L["4"]["RichText"] = true;
G2L["4"]["FontFace"] = Font.new([[rbxasset://fonts/families/RobotoMono.json]],
Enum.FontWeight.Regular, Enum.FontStyle.Normal);
G2L["4"]["Size"] = UDim2.new(1, -20, 1, -120);
G2L["4"]["Position"] = UDim2.new(0, 10, 0, 50);
G2L["4"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
G2L["4"]["Text"] = [[]];
G2L["4"]["BackgroundTransparency"] = 0.7;

-- StarterGui.JJSploitGui.Frame.TextBox.UICorner
G2L["5"] = Instance.new("UICorner", G2L["4"]);
G2L["5"]["CornerRadius"] = UDim.new(0, 20);

-- StarterGui.JJSploitGui.Frame.TextBox.UIPadding
G2L["6"] = Instance.new("UIPadding", G2L["4"]);
G2L["6"]["PaddingTop"] = UDim.new(0, 12);
G2L["6"]["PaddingRight"] = UDim.new(0, 12);
G2L["6"]["PaddingLeft"] = UDim.new(0, 12);
G2L["6"]["PaddingBottom"] = UDim.new(0, 12);

-- StarterGui.JJSploitGui.Frame.btnExec
G2L["7"] = Instance.new("TextButton", G2L["2"]);
G2L["7"]["BorderSizePixel"] = 0;
G2L["7"]["TextSize"] = 22;
G2L["7"]["TextColor3"] = Color3.fromRGB(255, 255, 255);
G2L["7"]["BackgroundColor3"] = Color3.fromRGB(0, 87, 0);
G2L["7"]["FontFace"] = Font.new([[rbxasset://fonts/families/Roboto.json]],
Enum.FontWeight.Medium, Enum.FontStyle.Normal);
G2L["7"]["BackgroundTransparency"] = 0.35;
G2L["7"]["Size"] = UDim2.new(1, -20, 0, 50);
G2L["7"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
G2L["7"]["Text"] = [[Execute]];
G2L["7"]["Name"] = [[btnExec]];
G2L["7"]["Position"] = UDim2.new(0, 10, 1, -60);

-- StarterGui.JJSploitGui.Frame.btnExec.UICorner
G2L["8"] = Instance.new("UICorner", G2L["7"]);
G2L["8"]["CornerRadius"] = UDim.new(0, 20);

-- StarterGui.JJSploitGui.Frame.UIGradient
G2L["9"] = Instance.new("UIGradient", G2L["2"]);
G2L["9"]["Color"] = ColorSequence.new{ColorSequenceKeypoint.new(0.000,
Color3.fromRGB(55, 206, 224)),ColorSequenceKeypoint.new(1.000, Color3.fromRGB(92,
136, 229))};

-- StarterGui.JJSploitGui.Frame.UICorner
G2L["a"] = Instance.new("UICorner", G2L["2"]);
G2L["a"]["CornerRadius"] = UDim.new(0, 20);

-- StarterGui.JJSploitGui.LocalScript
G2L["b"] = Instance.new("LocalScript", G2L["1"]);

-- StarterGui.JJSploitGui.btnOpen
G2L["c"] = Instance.new("ImageButton", G2L["1"]);
G2L["c"]["BorderSizePixel"] = 0;
G2L["c"]["BackgroundTransparency"] = 1;
-- [ERROR] cannot convert ImageContent, please report to
"https://github.com/uniquadev/GuiToLuaConverter/issues"
G2L["c"]["BackgroundColor3"] = Color3.fromRGB(255, 255, 255);
G2L["c"]["Image"] = [[rbxassetid://137842439297855]];
G2L["c"]["Size"] = UDim2.new(0, 50, 0, 50);
G2L["c"]["BorderColor3"] = Color3.fromRGB(0, 0, 0);
G2L["c"]["Name"] = [[btnOpen]];
G2L["c"]["Position"] = UDim2.new(1, -60, 0.5, 0);

-- StarterGui.JJSploitGui.btnOpen.UICorner
G2L["d"] = Instance.new("UICorner", G2L["c"]);
G2L["d"]["CornerRadius"] = UDim.new(1, 0);

-- StarterGui.JJSploitGui.LocalScript
local function C_b()
local script = G2L["b"];
local frame = script.Parent.Frame
frame.Visible = false

script.Parent.btnOpen.MouseButton1Click:Connect(function()
frame.Visible = not frame.Visible
frame.TextBox.Text = "--paste your lua script\n--You can find scripts
at https://wearedevs.net/scripts\n--This UI is an early release and will be
improved with time"
end)

frame.btnExec.MouseButton1Click:Connect(function()
local luascript = frame.TextBox.Text
local ok, err = pcall(function() loadstring(luascript)() end)
if not ok then warn("error running script:", err) end
end)

-- Notification
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = "JJSploit",
Text = "https://wearedevs.net",
Icon = "rbxassetid://137842439297855"
})
end;
task.spawn(C_b);

return G2L["1"], require;

You might also like