local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
local Window = Library.CreateLib("Ahmed Mode", "Ocean")
-- MAIN
local Main = Window:NewTab("Main")
local MainSection = Main:NewSection("Main")
MainSection:NewButton("Auto Attack", "Makes you do gymnastics", function()
local RunService = game:GetService("RunService")
local Timer = 0
local TimerMax = 0.00000000001
RunService.Heartbeat:Connect(function(Delta)
Timer += Delta
if Timer >= TimerMax then
Timer = 0
local args = {
[1] = {
["Input"] = "Mouse1",
["LightAttack"] = true
}
}
game:GetService("ReplicatedStorage").Remote.Event.Action:FireServer(unpack(args))
end
end)
local RunService = game:GetService("RunService")
local Timer = 0
local TimerMax = 0.00000000001
RunService.Heartbeat:Connect(function(Delta)
Timer += Delta
if Timer >= TimerMax then
Timer = 0
local args = {
[1] = {
["HeavyAttack"] = true,
["Input"] = "Mouse2"
}
}
game:GetService("ReplicatedStorage").Remote.Event.Action:FireServer(unpack(args))
end
end)
end)
MainSection:NewButton("TP to mobs", "Makes you do gymnastics", function()
local lp = game.Players.LocalPlayer
local function getNPC()
local dist, thing = math.huge
for i,v in pairs(game:GetService("Workspace").Lives:GetChildren()) do
if v.Name == "Lost Rider Lv.1" then
local mag = (game.Players.LocalPlayer.Character.HumanoidRootPart.Position - v.HumanoidRootPart.Position).magnitude
if mag < dist then
dist = mag
thing = v
end
end
end
return thing
end
local TweenService = game:GetService("TweenService")
local noclipE = false
local antifall = false
local function noclip()
for i, v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
if v:IsA("BasePart") and v.CanCollide == true then
v.CanCollide = false
game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
end
end
end
local function moveto(obj, speed)
local info = TweenInfo.new(((game.Players.LocalPlayer.Character.HumanoidRootPart.Position - obj.Position).Magnitude)/ speed,Enum.EasingStyle.Linear)
local tween = TweenService:Create(game.Players.LocalPlayer.Character.HumanoidRootPart, info, {CFrame = obj})
if not game.Players.LocalPlayer.Character.HumanoidRootPart:FindFirstChild("BodyVelocity") then
antifall = Instance.new("BodyVelocity", game.Players.LocalPlayer.Character.HumanoidRootPart)
antifall.Velocity = Vector3.new(0,0,0)
noclipE = game:GetService("RunService").Stepped:Connect(noclip)
tween:Play()
end
tween.Completed:Connect(function()
antifall:Destroy()
noclipE:Disconnect()
end)
end
getgenv().bandit = true
while bandit do task.wait()
pcall(function()
moveto(getNPC().HumanoidRootPart.CFrame + Vector3.new(0,0,0), 100)
game:GetService("VirtualUser"):ClickButton1(Vector2.new(9e9, 9e9))
end)
end
end)
MainSection:NewToggle("Super-Human", "go fast and jump high", function(state)
if state then
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
else
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
end
end)
MainSection:NewButton("Infinite Yield", "FE Admin Commands", function()
loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
end)
--LOCAL PLAYER
local Player = Window:NewTab("Player")
local PlayerSection = Player:NewSection("Player")
PlayerSection:NewSlider("Walkspeed", "SPEED!!", 500, 16, function(s)
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
end)
PlayerSection:NewSlider("Jumppower", "JUMP HIGH!!", 350, 50, function(s)
game.Players.LocalPlayer.Character.Humanoid.JumpPower = s
end)
PlayerSection:NewButton("Reset WS/JP", "Resets to all defaults", function()
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
end)
--Other
local Other = Window:NewTab("Credits")
local OtherSection = Other:NewSection("Credits Goes To Ahmed Mode")
OtherSection:NewButton("Chat Spoofer", "Lets you chat for other people", function()
loadstring(game:HttpGet(('https://pastebin.com/raw/djBfk8Li'),true))()
end)
OtherSection:NewButton("Bypassed Fly", "bird mode", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
Fly(true)
end)
Views: 1
