0% found this document useful (0 votes)
1K views5 pages

JJSploit GUI for Lua Scripting

The document is a Lua script that creates a GUI for a Roblox exploit tool called JJSploit. It includes features such as a Lua executor, a script hub with pre-defined scripts, and a search function for finding scripts online. The GUI is designed with multiple tabs and interactive buttons for executing scripts, copying text, and clearing input.

Uploaded by

m6077281
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)
1K views5 pages

JJSploit GUI for Lua Scripting

The document is a Lua script that creates a GUI for a Roblox exploit tool called JJSploit. It includes features such as a Lua executor, a script hub with pre-defined scripts, and a search function for finding scripts online. The GUI is designed with multiple tabs and interactive buttons for executing scripts, copying text, and clearing input.

Uploaded by

m6077281
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

local gui = Instance.

new("ScreenGui", gethui())
[Link] = "JJSploitGui"
[Link] = [Link]
[Link] = false

local frame = [Link]("Frame", gui)


[Link] = 2
frame.BackgroundColor3 = [Link](255,255,255)
[Link] = [Link](0.8,0,0.9,0)
[Link] = [Link](0.1,0,0.05,0)
[Link] = 0.5

local grad = [Link]("UIGradient", frame)


[Link] = [Link]{
[Link](0, [Link](55,206,224)),
[Link](1, [Link](92,136,229))
}

[Link]("UICorner", frame).CornerRadius = [Link](0,20)

local tabSel = [Link]("Frame", frame)


[Link] = [Link](1,-20,0,40)
[Link] = [Link](0,10,0,5)
[Link] = 1

local btnTab1 = [Link]("TextButton", tabSel)


[Link] = [Link](0.33,-6,1,0)
btnTab1.BackgroundColor3 = [Link](24,155,255)
[Link] = 0.5
[Link] = "LUA EXECUTOR"
[Link] = 22
btnTab1.TextColor3 = [Link](255,255,255)
[Link] = [Link]
[Link]("UICorner", btnTab1).CornerRadius = [Link](0,20)

local btnTab2 = btnTab1:Clone()


[Link] = tabSel
[Link] = [Link](0.33,3,0,0)
[Link] = "SCRIPT HUB"

local btnTab3 = btnTab1:Clone()


[Link] = tabSel
[Link] = [Link](0.66,6,0,0)
[Link] = "SEARCH"

local tab1 = [Link]("Frame", frame)


[Link] = [Link](1,0,1,-50)
[Link] = [Link](0,0,0,50)
[Link] = 1

local textBox = [Link]("TextBox", tab1)


[Link] = [Link](1,-20,1,-70)
[Link] = [Link](0,10,0,0)
[Link] = 0.7
[Link] = 22
textBox.TextColor3 = [Link](255,255,255)
[Link] = true
[Link] = false
[Link] = [Link]
[Link] = [Link]
[Link] = [Link]
[Link] = "--paste your lua script"
[Link] = false
[Link] = [Link].Y
[Link] = true
[Link]("UICorner", textBox).CornerRadius = [Link](0,20)

local buttonsFrame = [Link]("Frame", tab1)


[Link] = [Link](1,-20,0,50)
[Link] = [Link](0,10,1,-60)
[Link] = 1

local layout = [Link]("UIListLayout", buttonsFrame)


[Link] = [Link]
[Link] = [Link]
[Link] = [Link](0,10)

local function createBtn(text)


local b = [Link]("TextButton", buttonsFrame)
[Link] = [Link](0,150,1,0)
[Link] = 0.3
b.BackgroundColor3 = [Link](50,120,255)
[Link] = text
[Link] = 18
[Link] = [Link]
b.TextColor3 = [Link](255,255,255)
[Link]("UICorner", b).CornerRadius = [Link](0,12)
return b
end

local execBtn = createBtn("Executar")


local copyBtn = createBtn("Copiar")
local clearBtn = createBtn("Limpar")

execBtn.MouseButton1Click:Connect(function()
pcall(function()
loadstring([Link])()
end)
end)

copyBtn.MouseButton1Click:Connect(function()
if setclipboard then
setclipboard([Link])
end
end)

clearBtn.MouseButton1Click:Connect(function()
[Link] = ""
end)

local tab2 = [Link]("ScrollingFrame", frame)


[Link] = false
[Link] = [Link](1,-20,1,-55)
[Link] = [Link](0,10,0,50)
[Link] = 1
tab2.ScrollBarImageColor3 = [Link](0,0,0)

local templateBtn = [Link]("TextButton")


[Link] = [Link](1,0,0,40)
templateBtn.BackgroundColor3 = [Link](24,155,255)
[Link] = 0.5
templateBtn.TextColor3 = [Link](255,255,255)
[Link] = 22
[Link] = [Link]
[Link]("UICorner", templateBtn).CornerRadius = [Link](0,20)

local scripts = {
{text="Infinite Jump", url="[Link]
%[Link]"},
{text="Noclip", url="[Link]
{text="TP Gui", url="[Link]
}

for i,v in ipairs(scripts) do


local btn = templateBtn:Clone()
[Link] = [Link]
[Link] = [Link](0,0,0,(45*(i-1)))
[Link] = tab2
btn.MouseButton1Click:Connect(function()
pcall(function()
loadstring(game:HttpGet([Link]))()
end)
end)
end

local tab3 = [Link]("Frame", frame)


[Link] = false
[Link] = [Link](1,-20,1,-55)
[Link] = [Link](0,10,0,50)
[Link] = 1

local searchBox = [Link]("TextBox", tab3)


[Link] = [Link](1,-20,0,40)
[Link] = [Link](0,10,0,0)
[Link] = ""
[Link] = "Search ScriptBlox"
[Link] = 20
searchBox.BackgroundColor3 = [Link](20,20,20)
searchBox.TextColor3 = [Link](255,255,255)
[Link]("UICorner", searchBox).CornerRadius = [Link](0,12)

local searchBtn = [Link]("TextButton", tab3)


[Link] = [Link](0,150,0,40)
[Link] = [Link](0,10,0,50)
[Link] = "Search"
[Link] = 20
searchBtn.BackgroundColor3 = [Link](24,155,255)
searchBtn.TextColor3 = [Link](255,255,255)
[Link]("UICorner", searchBtn).CornerRadius = [Link](0,12)

local results = [Link]("ScrollingFrame", tab3)


[Link] = [Link](1,-20,1,-100)
[Link] = [Link](0,10,0,100)
[Link] = [Link](0,0,0,0)
[Link] = 6
results.BackgroundColor3 = [Link](15,15,15)
[Link] = [Link].Y
[Link] = [Link].Y
[Link]("UICorner", results).CornerRadius = [Link](0,10)

local layout2 = [Link]("UIListLayout", results)


[Link] = [Link](0,8)

local HttpService = game:GetService("HttpService")

local function SearchScripts(txt)


for _,v in pairs(results:GetChildren()) do
if v:IsA("TextButton") then v:Destroy() end
end

local ok,response = pcall(function()


return game:HttpGet("[Link]
q="..txt.."&page=1&max=10")
end)
if not ok then return end

local data = HttpService:JSONDecode(response)


if not [Link] or not [Link] then return end

for _,info in ipairs([Link]) do


local b = [Link]("TextButton", results)
[Link] = [Link](1,-10,0,40)
[Link] = [Link]
b.TextColor3 = [Link](255,255,255)
b.BackgroundColor3 = [Link](45,120,255)
[Link] = 0.2
[Link] = 18
[Link]("UICorner", b).CornerRadius = [Link](0,8)

b.MouseButton1Click:Connect(function()
pcall(function()
loadstring([Link])()
end)
end)
end
end

searchBtn.MouseButton1Click:Connect(function()
if [Link] ~= "" then
SearchScripts([Link])
end
end)

btnTab1.MouseButton1Click:Connect(function()
[Link] = true
[Link] = false
[Link] = false
end)

btnTab2.MouseButton1Click:Connect(function()
[Link] = false
[Link] = true
[Link] = false
end)

btnTab3.MouseButton1Click:Connect(function()
[Link] = false
[Link] = false
[Link] = true
end)

local btnOpen = [Link]("ImageButton", gui)


[Link] = "btnOpen"
[Link] = 1
[Link] = "rbxassetid://137842439297855"
[Link] = [Link](0,50,0,50)
[Link] = [Link](1,-60,0.5,0)
[Link]("UICorner", btnOpen).CornerRadius = [Link](1,0)

do
local UIS = game:GetService("UserInputService")
local dragging, dragStart, startPos = false

local function update(input)


local delta = [Link] - dragStart
[Link] = [Link](
[Link],
[Link] + delta.X,
[Link],
[Link] + delta.Y
)
end

[Link]:Connect(function(i)
if [Link] == [Link].MouseButton1 or [Link] ==
[Link] then
dragging = true
dragStart = [Link]
startPos = [Link]
end
end)

[Link]:Connect(function(i)
dragging = false
end)

[Link]:Connect(function(i)
if dragging and ([Link] == [Link] or
[Link] == [Link]) then
update(i)
end
end)
end

[Link] = false
btnOpen.MouseButton1Click:Connect(function()
[Link] = not [Link]
end)

You might also like