local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") local hrp = character:WaitForChild("HumanoidRootPart") local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Slap Duels", LoadingTitle = "Slap Duels Made by Wlazed", LoadingSubtitle = "I dont skid Nigga", ConfigurationSaving = { Enabled = false } }) local Tab = Window:CreateTab("Actions", 4483362458) local function createFeetPlatform(position) local platform = Instance.new("Part") platform.Name = "BlinkPlatform" platform.Size = Vector3.new(12,1,12) platform.Anchored = true platform.CanCollide = true platform.Transparency = 0.8 platform.Material = Enum.Material.SmoothPlastic local footY = position.Y - humanoid.HipHeight - (platform.Size.Y/2) platform.Position = Vector3.new(position.X, footY, position.Z) platform.Parent = workspace RunService.Heartbeat:Wait() return platform end local function blinkToPart(part) if not part or not part:IsA("BasePart") then return end local originalCFrame = hrp.CFrame hrp.CFrame = part.CFrame + Vector3.new(0, -3, 0) RunService.Heartbeat:Wait() local platform = createFeetPlatform(hrp.Position) if part:FindFirstChildOfClass("TouchInterest", true) then firetouchinterest(hrp, part, 0) firetouchinterest(hrp, part, 1) end task.wait(0.25) if platform then platform:Destroy() end hrp.CFrame = originalCFrame end Tab:CreateButton({ Name = "Blink to 2nd Nearest Goal", Callback = function() local startPart = workspace:FindFirstChild("StartPart", true) local endPart = workspace:FindFirstChild("EndPart", true) if not startPart or not endPart then Rayfield:Notify({ Title = "ERROR", Content = "Goal parts not found", Duration = 3 }) return end local distStart = (startPart.Position - hrp.Position).Magnitude local distEnd = (endPart.Position - hrp.Position).Magnitude local targetGoal = (distStart > distEnd) and startPart or endPart blinkToPart(targetGoal) end }) Tab:CreateButton({ Name = "Bypass Anticheat", Callback = function() local packages = ReplicatedStorage:FindFirstChild("Packages") local knit = packages and packages:FindFirstChild("Knit") local services = knit and knit:FindFirstChild("Services") local ac = services and services:FindFirstChild("AntiCheatService") if ac then ac:Destroy() Rayfield:Notify({Title="Success", Content="AntiCheatService deleted", Duration=3}) else Rayfield:Notify({Title="Info", Content="Anticheat already dead", Duration=3}) end end })