- 📅 2026-04-20T09:30:48.630Z
- 👁️ 60 katselukertaa
- 🔓 Julkinen
--!native
--!optimize 2
-- [[ NEXONI V1 | FINAL APEX TITAN ]]
_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 = {
SilentAim = false,
ESP = false,
VoidSpam = false,
VoidPower = 600000,
Orbit = false,
OrbitSpeed = 100,
OrbitRadius = 10,
Crosshair = true,
Angle = 0,
Visible = true,
Accent = Color3.fromRGB(0, 255, 150)
}
-- // [01] UI CORE (MOBILIZED LINORIA)
local Screen = Instance.new("ScreenGui", CoreGui)
Screen.Name = "Nexoni_Apex"
local Main = Instance.new("Frame", Screen)
Main.Size = UDim2.new(0, 210, 0, 400)
Main.Position = UDim2.new(0.5, -105, 0.5, -200)
Main.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
Main.BorderSizePixel = 1
Main.BorderColor3 = Color3.fromRGB(40, 40, 40)
local TopBar = Instance.new("Frame", Main)
TopBar.Size = UDim2.new(1, 0, 0, 25); TopBar.BackgroundColor3 = Color3.fromRGB(22, 22, 22); TopBar.BorderSizePixel = 0
local Title = Instance.new("TextLabel", TopBar)
Title.Size, Title.Position = UDim2.new(1, -10, 1, 0), UDim2.new(0, 10, 0, 0)
Title.Text, Title.TextColor3, Title.Font, Title.TextSize = "NEXONI V1 | APEX", Color3.new(1,1,1), Enum.Font.Code, 12
Title.TextXAlignment, Title.BackgroundTransparency = 0, 1
local AccentLine = Instance.new("Frame", TopBar)
AccentLine.Size, AccentLine.Position = UDim2.new(1, 0, 0, 1), UDim2.new(0, 0, 1, 0); AccentLine.BackgroundColor3 = Nexoni.Accent; AccentLine.BorderSizePixel = 0
local Container = Instance.new("ScrollingFrame", Main)
Container.Size, Container.Position = UDim2.new(1, -16, 1, -40), UDim2.new(0, 8, 0, 35)
Container.BackgroundTransparency, Container.ScrollBarThickness = 1, 0
Instance.new("UIListLayout", Container).Padding = UDim.new(0, 10)
-- // [02] CROSSHAIR & VISUALS
local CH_V = Instance.new("Frame", Screen); CH_V.Size, CH_V.Position = UDim2.new(0, 2, 0, 16), UDim2.new(0.5, -1, 0.5, -8); CH_V.BackgroundColor3 = Nexoni.Accent; CH_V.BorderSizePixel = 0
local CH_H = Instance.new("Frame", Screen); CH_H.Size, CH_H.Position = UDim2.new(0, 16, 0, 2), UDim2.new(0.5, -8, 0.5, -1); CH_H.BackgroundColor3 = Nexoni.Accent; CH_H.BorderSizePixel = 0
local function CreateToggle(name, var)
local T = Instance.new("TextButton", Container); T.Size, T.BackgroundTransparency, T.Text = UDim2.new(1, 0, 0, 24), 1, ""
local Box = Instance.new("Frame", T); Box.Size, Box.Position = UDim2.new(0, 14, 0, 14), UDim2.new(0, 2, 0.5, -7)
Box.BackgroundColor3, Box.BorderColor3 = Color3.fromRGB(30, 30, 30), Color3.fromRGB(50, 50, 50)
local Label = Instance.new("TextLabel", T); Label.Size, Label.Position = UDim2.new(1, -25, 1, 0), UDim2.new(0, 22, 0, 0)
Label.Text, Label.TextColor3, Label.Font, Label.TextSize = name, Color3.fromRGB(180, 180, 180), Enum.Font.Code, 12
Label.TextXAlignment, Label.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)
if var == "Crosshair" then CH_V.Visible, CH_H.Visible = Nexoni.Crosshair, Nexoni.Crosshair end
end)
end
local function CreateSlider(name, min, max, var)
local S = Instance.new("Frame", Container); S.Size, S.BackgroundTransparency = UDim2.new(1, 0, 0, 38), 1
local L = Instance.new("TextLabel", S); L.Size, L.Text = UDim2.new(1, 0, 0, 15), name .. ": " .. math.floor(Nexoni[var])
L.TextColor3, L.Font, L.TextSize, L.TextXAlignment, L.BackgroundTransparency = Color3.new(0.7,0.7,0.7), Enum.Font.Code, 11, 0, 1
local Bar = Instance.new("Frame", S); Bar.Size, Bar.Position = UDim2.new(1, -4, 0, 8), UDim2.new(0, 2, 0, 18)
Bar.BackgroundColor3, Bar.BorderColor3 = Color3.fromRGB(30,30,30), 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 percent = math.clamp((UIS:GetMouseLocation().X - Bar.AbsolutePosition.X) / Bar.AbsoluteSize.X, 0, 1)
Nexoni[var] = min + (max - min) * percent
Fill.Size, L.Text = UDim2.new(percent, 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
CreateToggle("Headshot Silent Aim", "SilentAim")
CreateToggle("Global ESP", "ESP")
CreateToggle("360 Wallbang Orbit", "Orbit")
CreateSlider("Orbit Speed", 1, 500, "OrbitSpeed")
CreateToggle("Side-Void Pulse", "VoidSpam")
CreateSlider("Void Power", 1000, 1000000, "VoidPower")
CreateToggle("Custom Crosshair", "Crosshair")
-- // [03] APEX ENGINE
local function GetHead()
local target, dist = nil, 400
for _, v in pairs(_S.Players:GetPlayers()) do
if v ~= LP and v.Character and v.Character:FindFirstChild("Head") and v.Character.Humanoid.Health > 0 then
local pos = Cam:WorldToViewportPoint(v.Character.Head.Position)
local mag = (Vector2.new(pos.X, pos.Y) - (Cam.ViewportSize/2)).Magnitude
if mag < dist then target = v.Character.Head; dist = mag end
end
end
return target
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
-- 360 Orbit Wallbang
if Nexoni.Orbit then
local target = GetHead()
if target then
Nexoni.Angle = Nexoni.Angle + (Nexoni.OrbitSpeed / 100)
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(target.Position + Off, target.Position)
for _, v in pairs(Char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end
end
end
-- Side-Void + Tracker
if Nexoni.VoidSpam then
local oCF = R.CFrame
side = -side
local pulse = oCF.RightVector * (Nexoni.VoidPower * side)
-- Tracker Logic (Flicker Line)
local Tr = Tracers[LP] or Instance.new("LineHandleAdornment")
Tracers[LP] = Tr
Tr.Length, Tr.Thickness, Tr.AlwaysOnTop, Tr.Color3 = Nexoni.VoidPower, 2, true, Nexoni.Accent
Tr.Adornee, Tr.Parent, Tr.Visible = R, CoreGui, true
Tr.CFrame = CFrame.lookAt(R.Position, R.Position + pulse)
R.AssemblyLinearVelocity = Vector3.zero
R.CFrame = oCF + pulse
RS.RenderStepped:Wait()
R.CFrame = oCF
elseif Tracers[LP] then Tracers[LP].Visible = false end
-- ESP Engine
if Nexoni.ESP then
for _, p in pairs(_S.Players:GetPlayers()) do
if p ~= LP and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then
local head = p.Character:FindFirstChild("Head")
if head then
local screenPos, onScreen = Cam:WorldToViewportPoint(head.Position)
-- Simplified ESP using Box Tracers
local box = Tracers[p] or Instance.new("BoxHandleAdornment")
Tracers[p] = box
box.Size, box.AlwaysOnTop, box.ZIndex = Vector3.new(4, 6, 1), true, 5
box.Color3, box.Adornee, box.Parent = Nexoni.Accent, p.Character.HumanoidRootPart, CoreGui
box.Visible = true
box.Transparency = 0.7
end
end
end
else
for p, t in pairs(Tracers) do if p ~= LP then t.Visible = false end end
end
end)
RS.RenderStepped:Connect(function()
if Nexoni.SilentAim then
local head = GetHead()
if head then Cam.CFrame = Cam.CFrame:Lerp(CFrame.lookAt(Cam.CFrame.Position, head.Position), Nexoni.AimSmooth) end
end
end)
-- Mobile Toggle
local B = Instance.new("TextButton", Screen); B.Size, B.Position = UDim2.new(0, 35, 0, 35), UDim2.new(0, 10, 0.5, -17)
B.BackgroundColor3, B.BorderColor3, B.Text, B.TextColor3, B.Font = Color3.fromRGB(20, 20, 20), Nexoni.Accent, "N", Nexoni.Accent, Enum.Font.Code
B.MouseButton1Click:Connect(function() Nexoni.Visible = not Nexoni.Visible; Main.Visible = Nexoni.Visible end)