0% found this document useful (0 votes)
42 views4 pages

Project PP GUI Script for Roblox

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)
42 views4 pages

Project PP GUI Script for Roblox

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 player = [Link].

LocalPlayer
local scr = [Link]("ScreenGui")
[Link] = "ProjectPP"
[Link] = false
[Link] = player:WaitForChild("PlayerGui")

-- Main Frame
local main = [Link]("Frame", scr)
[Link] = [Link](0, 600, 0, 350)
[Link] = [Link](0.5, -300, 0.5, -175)
main.BackgroundColor3 = [Link](255,255,255)
[Link] = 3
main.BorderColor3 = [Link](0,0,0)

-- Title
local title = [Link]("TextLabel", main)
[Link] = [Link](0, 400, 0, 40)
[Link] = [Link](0, 10, 0, 5)
[Link] = "Project PP Classic"
[Link] = 28
[Link] = 1
[Link] = [Link]
title.TextColor3 = [Link](0, 0, 0)

-- Input Box
local inputFrame = [Link]("Frame", main)
[Link] = [Link](0, 420, 0, 220)
[Link] = [Link](0, 10, 0, 50)
inputFrame.BackgroundColor3 = [Link](255,255,255)
[Link] = 2
inputFrame.BorderColor3 = [Link](0,0,0)

local input = [Link]("TextBox", inputFrame)


[Link] = [Link](1, -10, 1, -10)
[Link] = [Link](0, 5, 0, 5)
input.BackgroundColor3 = [Link](255,255,255)
[Link] = ""
[Link] = 18
[Link] = true
[Link] = false
[Link] = true
[Link] = [Link]
[Link] = [Link]
[Link] = [Link]
[Link] = "Paste or type your script here..."

-- Buttons
local btnFrame = [Link]("Frame", main)
[Link] = [Link](0, 420, 0, 70)
[Link] = [Link](0, 10, 0, 280)
[Link] = 1

local function createButton(x,text)


local frame = [Link]("Frame", btnFrame)
[Link] = [Link](0, 190, 0, 60)
[Link] = [Link](0, x, 0, 5)
frame.BackgroundColor3 = [Link](255,255,255)
[Link] = 2
frame.BorderColor3 = [Link](0,0,0)
local btn = [Link]("TextButton", frame)
[Link] = [Link](1, -10, 1, -10)
[Link] = [Link](0, 5, 0, 5)
[Link] = text
[Link] = 20
btn.BackgroundColor3 = [Link](255,255,255)
btn.TextColor3 = [Link](0,0,0)

return btn
end

local execBtn = createButton(5,"Execute")


local clrBtn = createButton(210,"Clear")

-- Script Tab Title


local scriptTitle = [Link]("TextLabel", main)
[Link] = [Link](0, 150, 0, 35)
[Link] = [Link](0, 440, 0, 10)
[Link] = "Script Tab"
[Link] = 20
scriptTitle.BackgroundColor3 = [Link](255,255,255)
[Link] = 2
scriptTitle.BorderColor3 = [Link](0,0,0)
scriptTitle.TextColor3 = [Link](0,0,0)

-- Script Frame
local scriptFrame = [Link]("ScrollingFrame", main)
[Link] = [Link](0, 150, 0, 290)
[Link] = [Link](0, 440, 0, 50)
[Link] = [Link](0, 0, 0, 1000)
[Link] = 6
scriptFrame.BackgroundColor3 = [Link](255,255,255)
[Link] = 2
scriptFrame.BorderColor3 = [Link](0,0,0)

-- Script List
local scripts = {
{Title="project broken spawn",URL="[Link]
{Title="ssp",URL="[Link]
{Title="BiPolaria",URL="[Link]
{Title="Polaria",URL="[Link]
{Title="Rc7",URL="[Link]
{Title="KlausGui ss",URL="[Link]
{Title="luau x ss
v3",URL="[Link]
heads/main/L"},
{Title="luau x ss v5",URL="[Link]
SS-V5-rework-50365"},
{Title="c00lgui",URL="[Link]
main/[Link]"},
{Title="stigma
ultimate",URL="[Link]
refs/heads/main/Remakes/Stigma_Revision_0.lua"},
{Title="Ro Xploit tiny",URL="[Link]
Xploittinyhub/refs/heads/main/RoXploit%20TinyHub"},
{Title="Ro Xploit",URL="[Link]
{Title="SF",URL="[Link]
MOBILE/refs/heads/main/SF%201.5%20MOBILE"},
{Title="Rc7 blue",URL="[Link]
{Title="Rc7 back",URL="[Link]
{Title="Project Primalia SS",URL="[Link]
Project-Primalia-SS-63706"},
}

local y = 10
for _, s in ipairs(scripts) do
local b = [Link]("TextButton", scriptFrame)
[Link] = [Link](1, -10, 0, 40)
[Link] = [Link](0, 5, 0, y)
[Link] = [Link]
[Link] = 15
[Link] = [Link]
b.BackgroundColor3 = [Link](255,255,255)
[Link] = 2
b.BorderColor3 = [Link](0,0,0)
b.TextColor3 = [Link](0,0,0)

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

y += 45
end

-- Execute / Clear
execBtn.MouseButton1Click:Connect(function()
loadstring([Link])()
end)

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

[Link] = [[print("Welcome to Project PP")]]

-- Full Window Drag


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

local function update(input)


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

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

[Link]:Connect(function(i)
if [Link] == [Link] or [Link] ==
[Link] then
dragInput = i
end
end)

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

print("Project PP GUI loaded")

You might also like