local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
local Window = Rayfield:CreateWindow({
Name = "Knife Arena | Delta Premium",
LoadingTitle = "Knife Arena Script Loading...",
LoadingSubtitle = "by Gemini",
ConfigurationSaving = { Enabled = false }
})
local Player = game.Players.LocalPlayer
-- SEKMELER
local CombatTab = Window:CreateTab("Combat (Savaş)", 4483345998)
local MiscTab = Window:CreateTab("Movement & Misc", 4483362458)
--- [ COMBAT ÖZELLİKLERİ ] ---
-- Kill Aura & Reach
local killAura = false
local reachDistance = 20
CombatTab:CreateToggle({
Name = "Kill Aura (Otomatik Kesme)",
CurrentValue = false,
Callback = function(Value)
killAura = Value
spawn(function()
while killAura do
task.wait(0.1)
local tool = Player.Character:FindFirstChildOfClass("Tool")
if tool then
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= Player and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then
local dist = (Player.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude
if dist <= reachDistance then
-- Uzaktan vuruş tetikleyici
tool:Activate()
firetouchinterest(v.Character.HumanoidRootPart, tool.Handle, 0)
firetouchinterest(v.Character.HumanoidRootPart, tool.Handle, 1)
end
end
end
end
end
end)
end,
})
CombatTab:CreateSlider({
Name = "Reach Distance (Vurma Mesafesi)",
Range = {10, 50},
Increment = 1,
CurrentValue = 20,
Callback = function(Value)
reachDistance = Value
end,
})
-- Auto Parry (Bıçak Engelleme)
local autoParry = false
CombatTab:CreateToggle({
Name = "Auto Parry (Gelen Bıçakları Engelle)",
CurrentValue = false,
Callback = function(Value)
autoParry = Value
spawn(function()
while autoParry do
task.wait()
-- Etraftaki fırlatılmış bıçakları kontrol et
for _, obj in pairs(workspace:GetChildren()) do
if obj.Name == "ThrownKnife" or obj:FindFirstChild("Knife") then -- Oyunun bıçak isimlendirmesine göre
local dist = (Player.Character.HumanoidRootPart.Position - obj.Position).magnitude
if dist < 15 then
local tool = Player.Character:FindFirstChildOfClass("Tool")
if tool then tool:Activate() end
end
end
end
end
end)
end,
})
--- [ MOVEMENT ] ---
MiscTab:CreateSlider({
Name = "Speed (Hız)",
Range = {16, 250},
Increment = 1,
CurrentValue = 16,
Callback = function(V) Player.Character.Humanoid.WalkSpeed = V end,
})
MiscTab:CreateButton({
Name = "Infinite Yield",
Callback = function()
loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
end,
})
Rayfield:Notify({Title = "Knife Arena", Content = "Script Başarıyla Hazırlandı!", Duration = 5})
Comments
No comments yet
Be the first to share your thoughts!