local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Zamiel Gabriel Adriels Hub", LoadingTitle = "Zamiel Gabriel Adriels Hub", LoadingSubtitle = "by Zamiel Gabriel Adriel", ConfigurationSaving = { Enabled = true, FolderName = nil, FileName = "Zamiel Hub" }, Discord = { Enabled = false, Invite = "noinvitelink", RememberJoins = true }, KeySystem = false }) -- Player Tab local PlayerTab = Window:CreateTab("Player", 4483362458) PlayerTab:CreateSlider({ Name = "WalkSpeed", Range = {1, 10}, Increment = 1, Suffix = "Speed", CurrentValue = 10, Flag = "Slider1", Callback = function(Value) game.Players.LocalPlayer.Character:SetAttribute("SpeedMultiplier", Value) end, }) PlayerTab:CreateSlider({ Name = "Dash Length", Range = {10, 1000}, Increment = 1, Suffix = "Length", CurrentValue = 10, Flag = "Slider2", Callback = function(Value) game.Players.LocalPlayer.Character:SetAttribute("DashLength", Value) end, }) PlayerTab:CreateSlider({ Name = "Jump Height", Range = {10, 500}, Increment = 1, Suffix = "Height", CurrentValue = 10, Flag = "Slider3", Callback = function(Value) game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value end, }) -- Fun Tab local FunTab = Window:CreateTab("Fun", 4483362458) -- Fly Button FunTab:CreateButton({ Name = "Enable Fly (BetterFlyGUI)", Callback = function() getgenv().rotationSpeed = 0.08 loadstring(game:HttpGet("https://raw.githubusercontent.com/linhmcfake/Script/refs/heads/main/BetterFlyGUI.lua"))() Rayfield:Notify({ Title = "Fly Enabled", Content = "You are now flying.", Duration = 3, }) end, }) -- Noclip Button local Players = game:GetService("Players") local RunService = game:GetService("RunService") local LocalPlayer = Players.LocalPlayer local noclipEnabled = false local noclipConnection local function enableNoclip() noclipConnection = RunService.Stepped:Connect(function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then for _, v in pairs(LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") and v.CanCollide == true then v.CanCollide = false end end end end) end local function disableNoclip() if noclipConnection then noclipConnection:Disconnect() noclipConnection = nil end if LocalPlayer.Character then for _, v in pairs(LocalPlayer.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = true end end end end FunTab:CreateButton({ Name = "Toggle Noclip (Walk Through Walls)", Callback = function() noclipEnabled = not noclipEnabled if noclipEnabled then enableNoclip() Rayfield:Notify({ Title = "Noclip Enabled", Content = "You can now walk through walls!", Duration = 3, }) else disableNoclip() Rayfield:Notify({ Title = "Noclip Disabled", Content = "You can no longer walk through walls.", Duration = 3, }) end end, }) -- Animations Tab local AnimationsTab = Window:CreateTab("Animations", 4483362458) AnimationsTab:CreateButton({ Name = "Play Dance Animation", Callback = function() local animation = Instance.new("Animation") animation.AnimationId = "rbxassetid://33796059" local track = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(animation) track:Play() end, }) -- Auto Vehicle Loop Tab local AutoFarmTab = Window:CreateTab("Auto Farm", 4483362458) local vehicleLooping = false local vehicleLoopThread = nil local function AutoVehicleLoop() vehicleLoopThread = task.spawn(function() while vehicleLooping do local VehicleSpawnRemote = game:GetService("ReplicatedStorage"):FindFirstChild("SpawnVehicle") or game:GetService("ReplicatedStorage"):FindFirstChildWhichIsA("RemoteEvent") if VehicleSpawnRemote then VehicleSpawnRemote:FireServer("Bike") end task.wait(2) local car = LocalPlayer.Character and LocalPlayer.Character:FindFirstChildWhichIsA("VehicleSeat", true) if not car then for _, v in ipairs(workspace:GetDescendants()) do if v:IsA("VehicleSeat") and v:IsDescendantOf(workspace.Vehicles) then car = v break end end end if car then car.Throttle = 1 car.Steer = 0.3 task.wait(1) car.Steer = -0.3 task.wait(1) end task.wait(3) end end) end AutoFarmTab:CreateButton({ Name = "Toggle Auto Vehicle Loop", Callback = function() vehicleLooping = not vehicleLooping if vehicleLooping then AutoVehicleLoop() Rayfield:Notify({ Title = "Auto Vehicle", Content = "Auto Vehicle Loop Started", Duration = 3, }) else if vehicleLoopThread then task.cancel(vehicleLoopThread) vehicleLoopThread = nil end Rayfield:Notify({ Title = "Auto Vehicle", Content = "Auto Vehicle Loop Stopped", Duration = 3, }) end end, })