-- Apombe Cheat v3.0 | FULL CODE
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
local Window = Rayfield:CreateWindow({
Name = "Apombe Cheat v3.0 | God Mode",
LoadingTitle = "Apombe Sistemleri Basliyor...",
LoadingSubtitle = "by DeutZ",
})
_G.Aimbot = false
_G.FOV = 150
_G.ESP = false
_G.Fly = false
_G.FlySpeed = 50
_G.NoClip = false
_G.InfiniteJump = false
_G.Smoothness = 0.2
local Player = game.Players.LocalPlayer
local RS = game:GetService("RunService")
local UIS = game:GetService("UserInputService")
local Tab = Window:CreateTab("Ana Menu", 4483362458)
local ExtraTab = Window:CreateTab("Ekstralar", 4483362458)
Tab:CreateToggle({Name = "Aimbot (ALT)", CurrentValue = false, Callback = function(v) _G.Aimbot = v end})
Tab:CreateSlider({Name = "FOV", Range = {0, 1000}, Increment = 10, CurrentValue = 150, Callback = function(v) _G.FOV = v end})
Tab:CreateToggle({Name = "Player ESP", CurrentValue = false, Callback = function(v) _G.ESP = v end})
Tab:CreateToggle({Name = "Muq Fly", CurrentValue = false, Callback = function(v) _G.Fly = v end})
ExtraTab:CreateToggle({Name = "NoClip", CurrentValue = false, Callback = function(v) _G.NoClip = v end})
ExtraTab:CreateToggle({Name = "Sonsuz Ziplatma", CurrentValue = false, Callback = function(v) _G.InfiniteJump = v end})
ExtraTab:CreateButton({Name = "Chat Spam (EZ!)", Callback = function()
game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Apombe Cheat v3.0 ON TOP!", "All")
end})
RS.RenderStepped:Connect(function()
local Char = Player.Character
local Root = Char and Char:FindFirstChild("HumanoidRootPart")
local Cam = workspace.CurrentCamera
if _G.ESP then
for _, p in pairs(game.Players:GetPlayers()) do
if p ~= Player and p.Character then
if not p.Character:FindFirstChild("Apombe_ESP") then
local h = Instance.new("Highlight", p.Character)
h.Name = "Apombe_ESP"
h.FillColor = Color3.fromRGB(255, 0, 0)
end
end
end
else
for _, p in pairs(game.Players:GetPlayers()) do
if p.Character and p.Character:FindFirstChild("Apombe_ESP") then p.Character.Apombe_ESP:Destroy() end
end
end
if _G.Aimbot and UIS:IsKeyDown(Enum.KeyCode.LeftAlt) then
local target = nil
local dist = _G.FOV
local mousePos = UIS:GetMouseLocation()
for _, v in pairs(game.Players:GetPlayers()) do
if v ~= Player and v.Character and v.Character:FindFirstChild("Head") then
local head = v.Character.Head
local pos, onScreen = Cam:WorldToScreenPoint(head.Position)
if onScreen then
local mag = (Vector2.new(mousePos.X, mousePos.Y) - Vector2.new(pos.X, pos.Y)).Magnitude
if mag < dist then
dist = mag
target = head
end
end
end
end
if target then
local targetCFrame = CFrame.new(Cam.CFrame.Position, target.Position)
Cam.CFrame = Cam.CFrame:Lerp(targetCFrame, _G.Smoothness)
end
end
if _G.Fly and Root then
Root.Velocity = Vector3.new(0, 0.1, 0)
local dir = Vector3.new(0,0,0)
if UIS:IsKeyDown(Enum.KeyCode.W) then dir = dir + Cam.CFrame.LookVector end
if UIS:IsKeyDown(Enum.KeyCode.S) then dir = dir - Cam.CFrame.LookVector end
if UIS:IsKeyDown(Enum.KeyCode.A) then dir = dir - Cam.CFrame.RightVector end
if UIS:IsKeyDown(Enum.KeyCode.D) then dir = dir + Cam.CFrame.RightVector end
if dir.Magnitude > 0 then
Root.CFrame = Root.CFrame + (dir.Unit * (_G.FlySpeed / 10))
end
end
if _G.NoClip and Char then
for _, part in pairs(Char:GetDescendants()) do
if part:IsA("BasePart") then part.CanCollide = false end
end
end
end)
UIS.JumpRequest:Connect(function()
if _G.InfiniteJump and Player.Character and Player.Character:FindFirstChildOfClass("Humanoid") then
Player.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping")
end
end)
Comments
No comments yet
Be the first to share your thoughts!