-- ================= d00mkidd Titan Realm Constructor [V113 HACKER-DIRECT] ================= -- NO GUI | STANDALONE EXECUTION | DUAL TITAN + ORIGINAL WALLS FUSION repeat task.wait() until game:IsLoaded() local ReplicatedStorage = game:GetService("ReplicatedStorage") local RequestCommand = ReplicatedStorage:WaitForChild("HDAdminHDClient").Signals.RequestCommandSilent -- [[ SET ATMOSPHERE ]] -- RequestCommand:InvokeServer(";btools me") RequestCommand:InvokeServer(";fogcolor black") RequestCommand:InvokeServer(";punish all") RequestCommand:InvokeServer(";servermessage me and Dgpfgod has hax your game") RequestCommand:InvokeServer(";music 85390427326662") RequestCommand:InvokeServer(";pitch 0.15") RequestCommand:InvokeServer(";volume inf") task.wait(0.4) local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() -- [[ F3X ENGINE ]] -- local function getf3x() local t = player.Backpack:FindFirstChild("F3X") or (char and char:FindFirstChild("F3X")) if not t then for _, v in pairs(player:GetDescendants()) do if v.Name == "SyncAPI" then t = v.Parent break end end end return t and t.SyncAPI.ServerEndpoint end local server = getf3x() if not server then return end -- [[ CONSTRUCTION FUNCTIONS ]] -- local function setupPart(part, nameStr, size, cf, color3) server:InvokeServer("SetName", {part}, nameStr) server:InvokeServer("SyncResize", {{["Part"] = part, ["CFrame"] = cf, ["Size"] = size}}) server:InvokeServer("SyncAnchor", {{["Part"] = part, ["Anchored"] = true}}) if color3 then server:InvokeServer("SyncColor", {{["Part"] = part, ["Color"] = color3, ["UnionColoring"] = false}}) end end local function applyDecal(part, id, side) server:InvokeServer("CreateTextures", {{["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal"}}) server:InvokeServer("SyncTexture", {{["Part"] = part, ["Face"] = side, ["TextureType"] = "Decal", ["Texture"] = "rbxassetid://"..id}}) end -- [[ BUILD REALM ]] -- local function build() -- 1. THE NEON FLOOR local baseCF = CFrame.new(0, 5, 0) local base = server:InvokeServer("CreatePart", "Normal", baseCF, workspace) setupPart(base, "d00m_Floor", Vector3.new(512, 2, 512), baseCF, Color3.new(0,0,0)) server:InvokeServer("SyncMaterial", {{["Part"] = base, ["Material"] = Enum.Material.Neon}}) -- 2. SPAWN POINT local spawnCF = CFrame.new(34.5, 8, -26) local spawna = server:InvokeServer("CreatePart", "Spawn", spawnCF, workspace) setupPart(spawna, "SpawnLocation", Vector3.new(20, 2, 20), spawnCF) applyDecal(spawna, "98133081867980", Enum.NormalId.Top) -- 3. ORIGINAL WALLS (From V109) -- Rules Wall local rulesCF = CFrame.new(74, 24, -25) local rules = server:InvokeServer("CreatePart", "Normal", rulesCF, workspace) setupPart(rules, "RulesWall", Vector3.new(1, 23, 37), rulesCF) applyDecal(rules, "70623655539480", Enum.NormalId.Left) server:InvokeServer("SyncCollision", {{["Part"] = rules, ["CanCollide"] = false}}) -- Effect Wall local badCF = CFrame.new(1, 24, -25) local bad = server:InvokeServer("CreatePart", "Normal", badCF, workspace) setupPart(bad, "EffectWall", Vector3.new(1, 23, 37), badCF) applyDecal(bad, "71288949541089", Enum.NormalId.Right) server:InvokeServer("SyncCollision", {{["Part"] = bad, ["CanCollide"] = false}}) server:InvokeServer("SyncMaterial", {{["Part"] = bad, ["Transparency"] = 1}}) -- 4. THE TITANS (6X SCALE) local titanSize = Vector3.new(24, 30, 6) local titanScale = Vector3.new(6.0, 6.0, 6.0) -- Titan 1: d00mkidd local titan1CF = spawnCF * CFrame.new(-20, 15, -10) local titan1 = server:InvokeServer("CreatePart", "Normal", titan1CF, workspace) setupPart(titan1, "Titan_d00mkidd", titanSize, titan1CF) server:InvokeServer("CreateMeshes", {{["Part"] = titan1}}) server:InvokeServer("SyncMesh", {{ ["Part"] = titan1, ["MeshId"] = "rbxassetid://99713694716622", ["TextureId"] = "rbxassetid://77142979171006", ["Scale"] = titanScale }}) -- Titan 2: Dgpfgod local titan2CF = spawnCF * CFrame.new(20, 15, -10) local titan2 = server:InvokeServer("CreatePart", "Normal", titan2CF, workspace) setupPart(titan2, "Titan_Dgpfgod", titanSize, titan2CF) server:InvokeServer("CreateMeshes", {{["Part"] = titan2}}) server:InvokeServer("SyncMesh", {{ ["Part"] = titan2, ["MeshId"] = "rbxassetid://119312910886265", ["TextureId"] = "rbxassetid://100822465923702", ["Scale"] = titanScale }}) -- SYNCED SPIN LOOP task.spawn(function() local rot = 0 while true do rot = rot + 0.5 if titan1 and titan1.Parent then server:InvokeServer("SyncMove", {{["Part"] = titan1, ["CFrame"] = titan1CF * CFrame.Angles(0, math.rad(rot), 0)}}) end if titan2 and titan2.Parent then server:InvokeServer("SyncMove", {{["Part"] = titan2, ["CFrame"] = titan2CF * CFrame.Angles(0, math.rad(rot), 0)}}) end task.wait(0.05) end end) -- 5. SKYBOX MESH local sky = server:InvokeServer("CreatePart", "Normal", baseCF, workspace) server:InvokeServer("CreateMeshes", {{["Part"] = sky}}) server:InvokeServer("SyncMesh", {{ ["Part"] = sky, ["MeshId"] = "rbxassetid://111891702759441", ["TextureId"] = "rbxassetid://129756940252122", ["Scale"] = Vector3.new(9000, 9000, 9000) }}) server:InvokeServer("SyncCollision", {{["Part"] = sky, ["CanCollide"] = false}}) server:InvokeServer("SyncAnchor", {{["Part"] = sky, ["Anchored"] = true}}) end -- Run Build build() -- Finalize Effects RequestCommand:InvokeServer(";res all") RequestCommand:InvokeServer(";time 0") RequestCommand:InvokeServer(";r6 all") print("V113 Hacker-Direct Executed.")