- 📅 2026-04-20T09:41:57.682Z
- 👁️ 70 katselukertaa
- 🔓 Julkinen
--!native
--!optimize 2
-- [[ NEXONI TITAN | ORBIT SPEED OPTIMIZED ]]
_G.script_key = "nexoni_lua"
local _S = setmetatable({}, {__index = function(t, k) return game:GetService(k) end})
local LP = _S.Players.LocalPlayer
local RS, UIS, TS = _S.RunService, _S.UserInputService, _S.TweenService
local CoreGui = (gethui and gethui()) or _S.CoreGui or LP:WaitForChild("PlayerGui")
local Cam = workspace.CurrentCamera
local Nexoni = {
VoidSpam = false, VoidPower = 600000, Tracker = false, Crosshair = true, ESP = false,
Orbit = false, OrbitSpeed = 150, OrbitRadius = 5,
Visible = true, CurrentTab = "Main", Angle = 0,
Accent = Color3.fromRGB(0, 255, 150)
}
-- // [01] UI CONSTRUCTION (SLIM SCALE)
local Screen = Instance.new("ScreenGui", CoreGui); Screen.Name = "NexoniOrbitSpeed"
local Main = Instance.new("Frame", Screen)
Main.Size = UDim2.new(0, 240, 0, 320)
Main.Position = UDim2.new(0.5, -120, 0.5, -160)
Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15); Main.BorderSizePixel = 1; Main.BorderColor3 = Color3.fromRGB(40, 40, 40)
local TabFrame = Instance.new("Frame", Main)
TabFrame.Size = UDim2.new(1, 0, 0, 28); TabFrame.BackgroundColor3 = Color3.fromRGB(22, 22, 22); TabFrame.BorderSizePixel = 0
local TabList = Instance.new("UIListLayout", TabFrame); TabList.FillDirection, TabList.HorizontalAlignment = 1, 1
local Content = Instance.new("Frame", Main)
Content.Size = UDim2.new(1, -16, 1, -40); Content.Position = UDim2.new(0, 8, 0, 35); Content.BackgroundTransparency = 1
local Pages = {
Main = Instance.new("ScrollingFrame", Content),
Wallbang = Instance.new("ScrollingFrame", Content),
Configs = Instance.new("ScrollingFrame", Content)
}
for _, p in pairs(Pages) do
p.Size, p.BackgroundTransparency, p.Visible, p.ScrollBarThickness = UDim2.new(1, 0, 1, 0), 1, false, 0
Instance.new("UIListLayout", p).Padding = UDim.new(0, 6)
end
Pages.Main.Visible = true
-- // UI BUILDERS
local function NewTab(name)
local B = Instance.new("TextButton", TabFrame)
B.Size, B.BackgroundTransparency = UDim2.new(0.33, 0, 1, 0), 1
B.Text, B.TextColor3, B.Font, B.TextSize = name, Color3.new(0.5,0.5,0.5), Enum.Font.Code, 11
B.MouseButton1Click:Connect(function()
for n, p in pairs(Pages) do p.Visible = (n == name) end
for _, btn in pairs(TabFrame:GetChildren()) do if btn:IsA("TextButton") then btn.TextColor3 = Color3.new(0.5,0.5,0.5) end end
B.TextColor3 = Nexoni.Accent
end)
if name == "Main" then B.TextColor3 = Nexoni.Accent end
end
local function NewToggle(parent, name, var)
local T = Instance.new("TextButton", Pages[parent]); T.Size, T.BackgroundTransparency, T.Text = UDim2.new(1, 0, 0, 22), 1, ""
local Box = Instance.new("Frame", T); Box.Size, Box.Position = UDim2.new(0, 12, 0, 12), UDim2.new(0, 2, 0.5, -6); Box.BackgroundColor3 = Color3.fromRGB(30, 30, 30); Box.BorderColor3 = Color3.fromRGB(50, 50, 50)
local L = Instance.new("TextLabel", T); L.Size, L.Position = UDim2.new(1, -22, 1, 0), UDim2.new(0, 20, 0, 0); L.Text, L.TextColor3, L.Font, L.TextSize = name, Color3.new(0.8,0.8,0.8), Enum.Font.Code, 11; L.TextXAlignment, L.BackgroundTransparency = 0, 1
T.MouseButton1Click:Connect(function()
Nexoni[var] = not Nexoni[var]
Box.BackgroundColor3 = Nexoni[var] and Nexoni.Accent or Color3.fromRGB(30, 30, 30)
end)
end
local function NewSlider(parent, name, min, max, var)
local S = Instance.new("Frame", Pages[parent]); S.Size, S.BackgroundTransparency = UDim2.new(1, 0, 0, 35), 1
local L = Instance.new("TextLabel", S); L.Size, L.Text = UDim2.new(1, 0, 0, 14), name .. ": " .. math.floor(Nexoni[var]); L.TextColor3, L.Font, L.TextSize, L.TextXAlignment, L.BackgroundTransparency = Color3.new(0.6,0.6,0.6), Enum.Font.Code, 10, 0, 1
local Bar = Instance.new("Frame", S); Bar.Size, Bar.Position = UDim2.new(1, -4, 0, 6), UDim2.new(0, 2, 0, 18); Bar.BackgroundColor3 = Color3.fromRGB(30, 30, 30); Bar.BorderColor3 = Color3.fromRGB(50, 50, 50)
local Fill = Instance.new("Frame", Bar); Fill.Size, Fill.BackgroundColor3, Fill.BorderSizePixel = UDim2.new(math.clamp((Nexoni[var]-min)/(max-min), 0, 1), 0, 1, 0), Nexoni.Accent, 0
Bar.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
local c; c = RS.RenderStepped:Connect(function()
local per = math.clamp((UIS:GetMouseLocation().X - Bar.AbsolutePosition.X) / Bar.AbsoluteSize.X, 0, 1)
Nexoni[var] = min + (max - min) * per
Fill.Size, L.Text = UDim2.new(per, 0, 1, 0), name .. ": " .. math.floor(Nexoni[var])
end)
input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then c:Disconnect() end end)
end
end)
end
-- Tabs
NewTab("Main"); NewTab("Wallbang"); NewTab("Configs")
NewToggle("Main", "600k Side-Void", "VoidSpam")
NewToggle("Main", "Void Tracker", "Tracker")
NewToggle("Main", "Global ESP", "ESP")
NewToggle("Wallbang", "Enable Wallbang Orbit", "Orbit")
NewSlider("Wallbang", "Orbit Speed", 1, 1500, "OrbitSpeed")
NewSlider("Wallbang", "Orbit Radius", 0, 50, "OrbitRadius")
-- // [02] TITAN PHYSICS ENGINE
local function GetEnemy()
local t, d = nil, 800
for _, v in pairs(_S.Players:GetPlayers()) do
if v ~= LP and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
local pos = Cam:WorldToViewportPoint(v.Character.HumanoidRootPart.Position)
local mag = (Vector2.new(pos.X, pos.Y) - (Cam.ViewportSize/2)).Magnitude
if mag < d then t = v.Character; d = mag end
end
end
return t
end
local Tracers = {}
local side = 1
RS.Heartbeat:Connect(function()
local Char = LP.Character
local R = Char and Char:FindFirstChild("HumanoidRootPart")
if not R then return end
-- Wallbang Orbit Logic
if Nexoni.Orbit then
local T = GetEnemy()
if T and T:FindFirstChild("HumanoidRootPart") then
Nexoni.Angle = Nexoni.Angle + (Nexoni.OrbitSpeed / 100)
local TargetPos = T.HumanoidRootPart.Position
-- Offsets height by 1.5 to stay at chest/head level
local Off = Vector3.new(math.cos(Nexoni.Angle) * Nexoni.OrbitRadius, 1.5, math.sin(Nexoni.Angle) * Nexoni.OrbitRadius)
R.AssemblyLinearVelocity = Vector3.zero
R.CFrame = CFrame.new(TargetPos + Off, TargetPos)
-- Phase through walls
for _, v in pairs(Char:GetDescendants()) do
if v:IsA("BasePart") then v.CanCollide = false end
end
end
end
-- Void Pulse
if Nexoni.VoidSpam then
local oCF = R.CFrame
side = -side
local pulse = oCF.RightVector * (Nexoni.VoidPower * side)
if Nexoni.Tracker then
local Tr = Tracers[LP] or Instance.new("LineHandleAdornment", CoreGui)
Tracers[LP] = Tr; Tr.Length, Tr.Thickness, Tr.AlwaysOnTop, Tr.Color3 = Nexoni.VoidPower, 1, true, Nexoni.Accent
Tr.Adornee, Tr.Visible = R, true; Tr.CFrame = CFrame.lookAt(R.Position, R.Position + pulse)
end
R.AssemblyLinearVelocity = Vector3.zero
R.CFrame = oCF + pulse
RS.RenderStepped:Wait()
R.CFrame = oCF
elseif Tracers[LP] then Tracers[LP].Visible = false end
end)
-- PC Controls
UIS.InputBegan:Connect(function(i, g)
if not g and (i.KeyCode == Enum.KeyCode.RightShift or i.KeyCode == Enum.KeyCode.Insert) then
Nexoni.Visible = not Nexoni.Visible; Main.Visible = Nexoni.Visible
end
end)
-- Mobile Button
local Mob = Instance.new("TextButton", Screen); Mob.Size, Mob.Position = UDim2.new(0, 30, 0, 30), UDim2.new(0, 5, 0.5, -15)
Mob.BackgroundColor3, Mob.Text, Mob.TextColor3, Mob.Font = Color3.fromRGB(20,20,20), "N", Nexoni.Accent, Enum.Font.Code; Mob.BorderSizePixel = 1; Mob.BorderColor3 = Nexoni.Accent
Mob.MouseButton1Click:Connect(function() Nexoni.Visible = not Nexoni.Visible; Main.Visible = Nexoni.Visible end)