What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

FORSAKEN FUN GUI (KEYLESS)

Version / Update: v1.0.0
Download / Script Link
local player = game.Players.LocalPlayer
local gui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
gui.ResetOnSpawn = false

--------------------------------------------------
-- 🔴 SHARED FUNCTIONS
--------------------------------------------------

local function glitch(parent)
local overlay = Instance.new("Frame", parent)
overlay.Size = UDim2.new(1,0,1,0)
overlay.BackgroundTransparency = 1

for i = 1,25 do
task.spawn(function()
local pixel = Instance.new("Frame", overlay)
pixel.BorderSizePixel = 0
pixel.BackgroundColor3 = Color3.fromRGB(255,0,0)
pixel.Size = UDim2.new(0, math.random(20,120), 0, math.random(2,10))
pixel.Position = UDim2.new(math.random(),0,math.random(),0)
pixel.BackgroundTransparency = math.random(2,6)/10

for t = 1,5 do
pixel.Position = UDim2.new(math.random(),0,math.random(),0)
task.wait(0.03)
end

pixel:Destroy()
end)
end

task.delay(1, function()
overlay:Destroy()
end)
end

local messages = {
"D0Nt Use M1 H4CkSS",
"C00lkidd GUi DEtECT3d",
"B4Nn3D F0r3VER"
}

-- ✨ FADE POPUP
local function popup(parent)
local p = Instance.new("TextLabel", parent)
p.Size = UDim2.new(0,260,0,70)
p.Position = UDim2.new(0.5,-130+math.random(-30,30),0.5,-35+math.random(-25,25))
p.BackgroundColor3 = Color3.fromRGB(0,0,0)
p.BorderColor3 = Color3.fromRGB(255,0,0)
p.TextColor3 = Color3.fromRGB(255,0,0)
p.Font = Enum.Font.Code
p.TextScaled = true
p.Text = messages[math.random(1,#messages)]
p.BackgroundTransparency = 0
p.TextTransparency = 0

-- fade out
task.spawn(function()
task.wait(1)
for i = 0,1,0.1 do
p.BackgroundTransparency = i
p.TextTransparency = i
task.wait(0.05)
end
p:Destroy()
end)
end

local function getHRP()
local char = player.Character or player.CharacterAdded:Wait()
return char:WaitForChild("HumanoidRootPart")
end

--------------------------------------------------
-- 🔥 GUI CREATOR
--------------------------------------------------

local function createGUI(mode)
local newGui = Instance.new("ScreenGui", player.PlayerGui)
newGui.ResetOnSpawn = false

local frame = Instance.new("Frame", newGui)
frame.Size = UDim2.new(0,320,0,260)
frame.Position = UDim2.new(0.05,0,0.5,-130)
frame.BackgroundColor3 = Color3.fromRGB(0,0,0)
frame.BorderColor3 = Color3.fromRGB(255,0,0)
frame.Active = true
frame.Draggable = true

local title = Instance.new("TextLabel", frame)
title.Size = UDim2.new(1,0,0,30)
title.Text = "c00lkidd.exe"
title.TextColor3 = Color3.fromRGB(255,0,0)
title.BackgroundTransparency = 1
title.Font = Enum.Font.Code
title.TextScaled = true

local close = Instance.new("TextButton", frame)
close.Size = UDim2.new(0,30,0,30)
close.Position = UDim2.new(1,-30,0,0)
close.Text = "X"
close.BackgroundColor3 = Color3.fromRGB(60,0,0)
close.TextColor3 = Color3.new(1,1,1)
close.MouseButton1Click:Connect(function()
newGui:Destroy()
end)

local container = Instance.new("Frame", frame)
container.Size = UDim2.new(1,0,1,-30)
container.Position = UDim2.new(0,0,0,30)
container.BackgroundTransparency = 1

local function makeBtn(text,y,cd,func)
local btn = Instance.new("TextButton", container)
btn.Size = UDim2.new(1,-20,0,40)
btn.Position = UDim2.new(0,10,0,y)
btn.BackgroundColor3 = Color3.fromRGB(20,0,0)
btn.TextColor3 = Color3.fromRGB(255,0,0)
btn.Font = Enum.Font.Code
btn.TextScaled = true
btn.Text = text

local busy = false

btn.MouseButton1Click:Connect(function()
if busy then return end
busy = true

glitch(newGui)
popup(newGui)

func()

for i=cd,1,-1 do
btn.Text = text.." ("..i..")"
task.wait(1)
end

btn.Text = text
busy = false
end)
end

--------------------------------------------------
-- MODES
--------------------------------------------------

if mode == "main" then

makeBtn("Teleport",10,10,function()
local hrp = getHRP()
local furthest,dist = nil,0

for _,v in pairs(workspace:GetDescendants()) do
if v:IsA("BasePart") and v.Name=="Medkit" then
local d = (v.Position-hrp.Position).Magnitude
if d<=1200 and d>dist then
dist=d
furthest=v
end
end
end

if furthest then
hrp.CFrame = furthest.CFrame + Vector3.new(0,3,0)
end
end)

makeBtn("ESP",60,10,function()
local highlights={}
for _,plr in pairs(game.Players:GetPlayers()) do
if plr~=player and plr.Character then
local h=Instance.new("Highlight")
h.FillColor=Color3.fromRGB(255,0,0)
h.Parent=plr.Character
table.insert(highlights,h)
end
end
task.delay(25,function()
for _,h in pairs(highlights) do h:Destroy() end
end)
end)

makeBtn("Gimme That Loot",110,10,function()
local hrp = getHRP()
for i=1,5 do
local pool={}
for _,v in pairs(workspace:GetDescendants()) do
if v:IsA("BasePart") and (v.Name=="Medkit" or v.Name=="Bloxycola") then
table.insert(pool,v)
end
end
if #pool>0 then
local item=pool[math.random(1,#pool)]
hrp.CFrame=item.CFrame+Vector3.new(0,3,0)
end
task.wait(0.3)
end
end)

-- 🔥 RENAMED BUTTON
makeBtn("Killer GUI",160,0,function()
newGui:Destroy()
createGUI("killer")
end)

--------------------------------------------------
elseif mode == "killer" then

makeBtn("ESP",10,25,function()
local highlights={}
for _,plr in pairs(game.Players:GetPlayers()) do
if plr~=player and plr.Character then
local h=Instance.new("Highlight")
h.FillColor=Color3.fromRGB(255,0,0)
h.Parent=plr.Character
table.insert(highlights,h)
end
end
task.delay(120,function()
for _,h in pairs(highlights) do h:Destroy() end
end)
end)

makeBtn("Teleport",60,5,function()
local hrp = getHRP()
local closest=nil
local dist=1600

for _,plr in pairs(game.Players:GetPlayers()) do
if plr~=player and plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") then
local d=(plr.Character.HumanoidRootPart.Position-hrp.Position).Magnitude
if d<dist then
dist=d
closest=plr
end
end
end

if closest then
hrp.CFrame = closest.Character.HumanoidRootPart.CFrame + Vector3.new(0,3,0)
end
end)

makeBtn("Player GUI",110,0,function()
newGui:Destroy()
createGUI("main")
end)

end
end

--------------------------------------------------
-- START
--------------------------------------------------

createGUI("main")
[ View More ]
0387b25e-109a-4693-9b0f-8d3ab740d31d.webp


FREE FORSAKEN SCRIPT COMPLETLY FOR FREE
 
Back
Top