-- Uhhhhhh Variables --YES, I AM SPANISH, WHAT ABOUT IT? local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local UserInputService = game:GetService("UserInputService") local Lighting = game:GetService("Lighting") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local Request = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommandSilent local negro = Color3.new(0,0,0) local rojo = Color3.fromRGB(255,0,0) local blanco = Color3.new(1,1,1) --Starting the gui local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local blur = Instance.new("BlurEffect") blur.Size = 0 blur.Enabled = false blur.Parent = Lighting local floating = Instance.new("TextButton") floating.Size = UDim2.new(0,60,0,60) floating.Position = UDim2.new(0,20,0.5,-30) floating.BackgroundColor3 = negro floating.BorderColor3 = rojo floating.BorderSizePixel = 3 floating.Text = "≡" floating.TextColor3 = blanco floating.TextScaled = true floating.Font = Enum.Font.GothamBold floating.Parent = gui local frame = Instance.new("Frame") frame.Size = UDim2.new(0,420,0,620) frame.Position = UDim2.new(0.5,-210,0.5,-310) frame.BackgroundColor3 = negro frame.BorderColor3 = rojo frame.BorderSizePixel = 4 frame.Visible = false frame.Parent = gui -- draggable function do local dragging, dragStart, startPos frame.InputBegan:Connect(function(i) if i.UserInputType == Enum.UserInputType.MouseButton1 or i.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = i.Position startPos = frame.Position end end) UserInputService.InputChanged:Connect(function(i) if dragging and (i.UserInputType == Enum.UserInputType.MouseMovement or i.UserInputType == Enum.UserInputType.Touch) then local delta = i.Position - dragStart frame.Position = UDim2.new( startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y ) end end) UserInputService.InputEnded:Connect(function() dragging = false end) end -- gui again local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,45) title.BackgroundTransparency = 1 title.Text = "F4ke5tguii" title.TextColor3 = blanco title.TextScaled = true title.Font = Enum.Font.GothamBold title.Parent = frame local pages = {} local buttonCount = {0,0} local currentPage = 1 local MAX_BUTTONS = 12 -- 2x6 local function crearPagina() local p = Instance.new("Frame") p.Size = UDim2.new(1,0,1,-140) p.Position = UDim2.new(0,0,0,50) p.BackgroundTransparency = 1 p.Visible = false p.Parent = frame table.insert(pages,p) end crearPagina() crearPagina() local function mostrarPagina(n) for i,v in ipairs(pages) do v.Visible = (i == n) end currentPage = n end -- button function local function crearBoton(texto, funcion) local pageIndex = (buttonCount[1] < MAX_BUTTONS) and 1 or 2 if buttonCount[pageIndex] >= MAX_BUTTONS then return end local index = buttonCount[pageIndex] local row = math.floor(index / 2) local col = index % 2 local b = Instance.new("TextButton") b.Size = UDim2.new(0.5,-4,0,45) b.Position = UDim2.new( col * 0.5, col == 1 and 4 or 0, 0, row * 50 ) b.BackgroundColor3 = negro b.BorderColor3 = rojo b.BorderSizePixel = 3 b.Text = texto b.TextColor3 = blanco b.TextScaled = true b.Font = Enum.Font.Gotham b.Parent = pages[pageIndex] b.Activated:Connect(funcion) buttonCount[pageIndex] += 1 return b end -- making buttons crearBoton("Decal spam", function() loadstring(game:HttpGet("https://pastebin.com/raw/D3ebFniS"))() end) crearBoton("DW sky", function() loadstring(game:HttpGet("https://pastebin.com/raw/ndNYJpqi"))() Request:InvokeServer(";time 0") end) crearBoton("sky", function() loadstring(game:HttpGet("https://pastebin.com/raw/fuDn36NU"))() Request:InvokeServer(";time 0") end) crearBoton("particles", function() loadstring(game:HttpGet("https://pastebin.com/raw/YZnce3kh"))() end) crearBoton("music (L)", function() Request:InvokeServer(";music 99974358068663") Request:InvokeServer(";pitch 0.15") Request:InvokeServer(";volume inf") end) crearBoton("music2 (SSS)", function() Request:InvokeServer(";music 95156028272944") Request:InvokeServer(";pitch 0.2") Request:InvokeServer(";volume inf") end) crearBoton("skeletons", function() loadstring(game:HttpGet("https://pastebin.com/raw/shUFy0VB"))() Request:InvokeServer(";time 0") Request:InvokeServer(";disco ;fog") Request:InvokeServer(";music 95156028272944") Request:InvokeServer(";pitch 0.2") Request:InvokeServer(";volume inf") task.wait(7.6) Request:InvokeServer(";unfog") end) crearBoton("Sabers93New ui", function() loadstring(game:HttpGet("https://pastefy.app/sRyy941y/raw?part=sabguif3x"))() end) crearBoton("K00pgui F3x ", function() loadstring(game:HttpGet("https://rawscripts.net/raw/Universal-Script-k00pgui-v8-F3X-EDITON-52670"))() end) crearBoton("spin all", function() Request:InvokeServer(";spin all 360") end) crearBoton("explode all", function() Request:InvokeServer(";spin all 360") Request:InvokeServer(";kill all") end) crearBoton("l00pkill", function() Request:InvokeServer(";loopkill others") end) crearBoton("shaking mah heed", function() local RS = game:GetService("RunService") local P = game.Players.LocalPlayer local c = P.Character or P.CharacterAdded:Wait() local h = c:WaitForChild("Head") local hm = h:FindFirstChildWhichIsA("SpecialMesh") local t = P:FindFirstChild("SyncAPI", true) or game.ReplicatedStorage:FindFirstChild("SyncAPI", true) if not t then return end local s = t.Parent.SyncAPI.ServerEndpoint local hts = {} for _, v in ipairs(c:GetChildren()) do if v:IsA("Accessory") and v:FindFirstChild("Handle") then local m = v.Handle:FindFirstChildWhichIsA("SpecialMesh") if m then table.insert(hts, {p = v.Handle, m = m.MeshId}) end end end local tm, o, tg, sm, a, r = 1, 1, 0, 14, 0, 1/60 _G.ShakeSistemi = true RS.RenderStepped:Connect(function(dt) if not _G.ShakeSistemi then return end tm = tm + dt * 3 tg = math.sin(tm) * 1.9 o = o + (tg - o) * dt * sm a = a + dt if a >= r then a = 0 local stf = { { Part = h, MeshId = hm.MeshId, Offset = Vector3.new(o, 0, 0) } } for _, ht in ipairs(hts) do table.insert(stf, { Part = ht.p, MeshId = ht.m, Offset = Vector3.new(o, 0, 0) }) end s:InvokeServer("SyncMesh", stf) end end) end) -- swirtch pages local back = Instance.new("TextButton") back.Size = UDim2.new(0.5,-4,0,40) back.Position = UDim2.new(0,0,1,-85) back.Text = "<" back.TextScaled = true back.Font = Enum.Font.GothamBold back.BackgroundColor3 = negro back.BorderColor3 = rojo back.BorderSizePixel = 3 back.TextColor3 = blanco back.Parent = frame local next = back:Clone() next.Position = UDim2.new(0.5,4,1,-85) next.Text = ">" next.Parent = frame back.Activated:Connect(function() mostrarPagina(1) end) next.Activated:Connect(function() mostrarPagina(2) end) local close = Instance.new("TextButton") close.Size = UDim2.new(1,-10,0,40) close.Position = UDim2.new(0,5,1,-45) close.Text = "close" close.TextScaled = true close.Font = Enum.Font.GothamBold close.BackgroundColor3 = negro close.BorderColor3 = rojo close.BorderSizePixel = 3 close.TextColor3 = blanco close.Parent = frame -- animations local function abrir() frame.Visible = true floating.Visible = false blur.Enabled = true TweenService:Create(blur, TweenInfo.new(0.3), {Size = 20}):Play() mostrarPagina(1) end local function cerrar() TweenService:Create(blur, TweenInfo.new(0.3), {Size = 0}):Play() task.wait(0.3) blur.Enabled = false frame.Visible = false floating.Visible = true end floating.Activated:Connect(abrir) close.Activated:Connect(cerrar) -- done mostrarPagina(1) print("F4ke5tguii from Fake c00lkidd and ChatGPT")