-- === GROK RAYFIELD ULTIMATE ADMIN PANEL v4.1 === -- Click TP Tool + All Features local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Grok Ultimate Admin", LoadingTitle = "Grok Admin Panel", LoadingSubtitle = "v4.1 - Perfected", ConfigurationSaving = { Enabled = false }, }) local MainTab = Window:CreateTab("Main", 4483362458) local KillTab = Window:CreateTab("Kill Tools", 4483362458) local CharacterTab = Window:CreateTab("Character", 4483362458) local VisualTab = Window:CreateTab("Visuals", 4483362458) local UtilityTab = Window:CreateTab("Utilities", 4483362458) local CreditsTab = Window:CreateTab("Credits", 4483362458) -- ==================== MAIN ==================== MainTab:CreateToggle({Name = "Fly", CurrentValue = false, Callback = function(v) getgenv().flying = v if v then spawn(function() while getgenv().flying do local root = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if root then local cam = workspace.CurrentCamera local dir = Vector3.new() if UserInputService:IsKeyDown(Enum.KeyCode.W) then dir += cam.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.S) then dir -= cam.CFrame.LookVector end if UserInputService:IsKeyDown(Enum.KeyCode.A) then dir -= cam.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.D) then dir += cam.CFrame.RightVector end if UserInputService:IsKeyDown(Enum.KeyCode.Space) then dir += Vector3.new(0,1,0) end if UserInputService:IsKeyDown(Enum.KeyCode.LeftControl) then dir -= Vector3.new(0,1,0) end root.AssemblyLinearVelocity = dir * 80 end RunService.RenderStepped:Wait() end end) end end}) MainTab:CreateToggle({Name = "Noclip", CurrentValue = false, Callback = function(v) getgenv().noclip = v if v then getgenv().noclipConn = RunService.Stepped:Connect(function() local char = game.Players.LocalPlayer.Character if char then for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) else if getgenv().noclipConn then getgenv().noclipConn:Disconnect() end end end}) -- ==================== CLICK TP TOOL ==================== UtilityTab:CreateButton({ Name = "Give Click TP Tool", Callback = function() local tool = Instance.new("Tool") tool.Name = "Click TP" tool.RequiresHandle = false tool.Parent = game.Players.LocalPlayer.Backpack tool.Activated:Connect(function() local mouse = game.Players.LocalPlayer:GetMouse() local root = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if root and mouse.Hit then root.CFrame = CFrame.new(mouse.Hit.Position + Vector3.new(0, 6, 0)) end end) Rayfield:Notify({Title = "Success", Content = "Click TP Tool Given! Equip & Click to teleport", Duration = 6}) end }) -- ==================== OTHER FEATURES ==================== KillTab:CreateButton({Name = "Give Kill Sword", Callback = function() local tool = Instance.new("Tool") tool.Name = "Kill Sword" tool.RequiresHandle = false tool.Parent = game.Players.LocalPlayer.Backpack tool.Activated:Connect(function() local mouse = game.Players.LocalPlayer:GetMouse() if mouse.Target and mouse.Target.Parent:FindFirstChild("Humanoid") then mouse.Target.Parent.Humanoid.Health = 0 end end) end}) KillTab:CreateButton({Name = "Subspace Tripmine", Callback = function() local tool = Instance.new("Tool") tool.Name = "Subspace Tripmine" tool.RequiresHandle = false tool.Parent = game.Players.LocalPlayer.Backpack tool.Activated:Connect(function() local root = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if root then local mine = Instance.new("Part") mine.Size = Vector3.new(5,1.5,5) mine.Anchored = true mine.Transparency = 0.4 mine.Color = Color3.fromRGB(255,0,100) mine.CFrame = root.CFrame * CFrame.new(0,-3,-8) mine.Parent = workspace task.wait(1.6) local exp = Instance.new("Explosion") exp.Position = mine.Position exp.BlastRadius = 20 exp.Parent = workspace mine:Destroy() end end) end}) CharacterTab:CreateButton({Name = "God Mode", Callback = function() local hum = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.MaxHealth = math.huge; hum.Health = math.huge end end}) UtilityTab:CreateButton({Name = "Spawn Platform", Callback = function() local root = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if root then local p = Instance.new("Part") p.Size = Vector3.new(20,1.5,20) p.Anchored = true p.Transparency = 0.3 p.Color = Color3.fromRGB(0,170,255) p.Material = Enum.Material.Neon p.CFrame = root.CFrame * CFrame.new(0,-4,0) p.Parent = workspace end end}) UtilityTab:CreateButton({Name = "Server Hop", Callback = function() Rayfield:Notify({Title = "Server Hop", Content = "Hopping...", Duration = 5}) wait(1.5) game:GetService("TeleportService"):Teleport(game.PlaceId) end}) -- Credits CreditsTab:CreateLabel("Made by Grok") CreditsTab:CreateLabel("For: ez_bob8") CreditsTab:CreateLabel("This is perfection 🔥") print("✅ Grok Ultimate Admin Panel v4.1 Loaded!")