-- AZRIEL FINAL CLEAN VERSION local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local player = game.Players.LocalPlayer local Window = Rayfield:CreateWindow({ Name = "Azriel 🇮🇩", LoadingTitle = "Azriel System", LoadingSubtitle = "Blue Edition", ConfigurationSaving = { Enabled = false }, KeySystem = false }) local MainTab = Window:CreateTab("Main", 4483362458) local MiscTab = Window:CreateTab("Misc", 4483362458) -------------------------------------------------- -- SPEED local speed = 16 MainTab:CreateSlider({ Name = "Speed", Range = {16, 100}, Increment = 1, CurrentValue = 16, Callback = function(v) speed = v local hum = player.Character and player.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = v end end }) player.CharacterAdded:Connect(function() task.wait(1) local hum = player.Character:FindFirstChild("Humanoid") if hum then hum.WalkSpeed = speed end end) -------------------------------------------------- -- NOCLIP local noclip = false MainTab:CreateToggle({ Name = "Noclip", CurrentValue = false, Callback = function(v) noclip = v end }) game:GetService("RunService").Stepped:Connect(function() if noclip and player.Character then for _,v in pairs(player.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) -------------------------------------------------- -- INF JUMP local infJump = false MainTab:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Callback = function(v) infJump = v end }) game:GetService("UserInputService").JumpRequest:Connect(function() if infJump and player.Character then local hum = player.Character:FindFirstChild("Humanoid") if hum then hum:ChangeState(Enum.HumanoidStateType.Jumping) end end end) -------------------------------------------------- -- FLY + SPEED local flying = false local flySpeed = 60 MainTab:CreateToggle({ Name = "Fly", CurrentValue = false, Callback = function(v) flying = v local char = player.Character if not char then return end local hrp = char:FindFirstChild("HumanoidRootPart") if not hrp then return end if flying then local bv = Instance.new("BodyVelocity") bv.Name = "FlyVel" bv.MaxForce = Vector3.new(1e5,1e5,1e5) bv.Parent = hrp game:GetService("RunService").RenderStepped:Connect(function() if flying and bv then bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * flySpeed end end) else if hrp:FindFirstChild("FlyVel") then hrp.FlyVel:Destroy() end end end }) MainTab:CreateSlider({ Name = "Fly Speed", Range = {20, 200}, Increment = 5, CurrentValue = 60, Callback = function(v) flySpeed = v end }) -------------------------------------------------- -- DASH MainTab:CreateButton({ Name = "Dash", Callback = function() local char = player.Character if not char then return end local hrp = char:FindFirstChild("HumanoidRootPart") if hrp then hrp.Velocity = hrp.CFrame.LookVector * 120 end end }) -------------------------------------------------- -- ESP local espEnabled = false local espObjects = {} local function createESP(plr) if plr == player then return end local function apply(char) if not char or espObjects[plr] then return end local h = Instance.new("Highlight") h.FillColor = Color3.fromRGB(0,170,255) -- biru h.FillTransparency = 0.5 h.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop h.Parent = char espObjects[plr] = h end if plr.Character then apply(plr.Character) end plr.CharacterAdded:Connect(function(c) task.wait(1) if espEnabled then apply(c) end end) end local function removeESP() for _,v in pairs(espObjects) do if v then v:Destroy() end end espObjects = {} end MainTab:CreateToggle({ Name = "ESP", CurrentValue = false, Callback = function(v) espEnabled = v if v then for _,p in pairs(game.Players:GetPlayers()) do createESP(p) end else removeESP() end end }) game.Players.PlayerAdded:Connect(function(p) if espEnabled then createESP(p) end end) -------------------------------------------------- -- TIKTOK MainTab:CreateButton({ Name = "TikTok @eny.marlina1", Callback = function() setclipboard("https://www.tiktok.com/@eny.marlina1") end }) -------------------------------------------------- -- FLASHBACK local savedPosition = nil MiscTab:CreateButton({ Name = "Flashback", Callback = function() local char = player.Character if not char then return end local hrp = char:FindFirstChild("HumanoidRootPart") if not hrp then return end if not savedPosition then savedPosition = hrp.CFrame Rayfield:Notify({Title="Flashback",Content="Saved",Duration=3}) else hrp.CFrame = savedPosition Rayfield:Notify({Title="Flashback",Content="Returned",Duration=3}) end end }) MiscTab:CreateButton({ Name = "Reset Flashback", Callback = function() savedPosition = nil Rayfield:Notify({Title="Flashback",Content="Reset",Duration=3}) end }) -------------------------------------------------- -- ANTI AFK MiscTab:CreateButton({ Name = "Anti AFK", Callback = function() for _,v in pairs(getconnections(player.Idled)) do v:Disable() end Rayfield:Notify({Title="Anti AFK",Content="Active",Duration=3}) end }) -------------------------------------------------- -- REJOIN MiscTab:CreateButton({ Name = "Rejoin", Callback = function() game:GetService("TeleportService"):Teleport(game.PlaceId, player) end })