--Uploaded On https://youtube.com/AhmedMode
--Published on https://ahmedmode.com
--Credits goes to the devs!
--Scripts Below:
--Scripts
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:NewToggle("AutoFarm Clicks", "Auto Farm Clicks for you", function(state)
if state then
getgenv().farmer = true;
while wait() do
if getgenv().farmer == true then
local args = {
[2] = "ScreenTap"
}
game:GetService("ReplicatedStorage").LollysCodeLayout.RemotesHandler.RemoteEventFolder.ClickEnergy:FireServer(unpack(args))
end
end
else
getgenv().farmer = false;
while wait() do
if getgenv().farmer == true then
local args = {
[2] = "ScreenTap"
}
game:GetService("ReplicatedStorage").LollysCodeLayout.RemotesHandler.RemoteEventFolder.ClickEnergy:FireServer(unpack(args))
end
end
end
end)
MainSection:NewToggle("Speed", "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("Other/Credits")
local OtherSection = Other:NewSection("Created by Ahmed Mode")
OtherSection:NewButton("Fly", "bird mode", function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/Nicuse/RobloxScripts/main/BypassedFly.lua"))()
Fly(true)
end)
Views: 1
