Kengun Online Script | AUTO PUSHUPS, SQUATS & SITUPS – OPEN SOURCE SCRIPT



Created by KylnDantas#8776

Features:

  • AUTO PUSHUPS
  • AUTO SQUATS
  • AUTO SITUPS
  • OPEN SOURCE
--[[
   Contains Discord server prompt
]]

syn.request(
   {
       Url ="/rpc?v=1",
       Method = "POST",
       Headers = {
           ["Content-Type"] = "application/json",
           ["origin"] = "https://discord.com",
       },
       Body = game:GetService("HttpService"):JSONEncode(
           {
               ["args"] = {
                   ["code"] = "TbNZ7cSaE9",
               },
               ["cmd"] = "INVITE_BROWSER",
               ["nonce"] = "."
           })
       })

local library = loadstring(game:HttpGet('https://raw.githubusercontent.com/KylnDantas/Valiant-UI/main/mainFile.lua'))()

local Window = library:CreateWindow("KylnDantas", "discord.gg/TbNZ7cSaE9", 10044538000)

local Tab = Window:CreateTab("Main")
local Page = Tab:CreateFrame("Auto Tools")
Label = Page:CreateLabel("Set Cooldown first")

local cooldown
Page:CreateSlider("Cooldown", 0, 100,function(c)
   cooldown = c
end)


Toggle = Page:CreateToggle("Auto Pushups", "Automatic Pushups", function(t)
local backpack = game:GetService('Players').LocalPlayer.Backpack;
local chr = game:GetService('Players').LocalPlayer.Character;
local stamina = game:GetService("Players").LocalPlayer.Character.Stamina;

getgenv().autoPushup = t;

while getgenv().autoPushup and stamina.Value >= 99 do task.wait(cooldown)
       for i,v in pairs(backpack:GetChildren()) do
           game:GetService("ReplicatedStorage").Communication.Events.ActivateTraining:FireServer("Pushup")
           if v.Name == "Pushups" then
               v.Parent = chr
           end
       end
end
end)

Toggle = Page:CreateToggle("Auto Situps", "Automatic Situps", function(t)
local backpack = game:GetService('Players').LocalPlayer.Backpack;
local chr = game:GetService('Players').LocalPlayer.Character;
local stamina = game:GetService("Players").LocalPlayer.Character.Stamina;
   
getgenv().autoSitup = t;
   
while getgenv().autoSitup and stamina.Value >= 99 do task.wait(cooldown)
   for i,v in pairs(backpack:GetChildren()) do
       game:GetService("ReplicatedStorage").Communication.Events.ActivateTraining:FireServer("Situp")
       if v.Name == "Situps" then
           v.Parent = chr
       end
   end
end
end)

Toggle = Page:CreateToggle("Auto Squats", "Automatic Squats", function(t)
local backpack = game:GetService('Players').LocalPlayer.Backpack;
local chr = game:GetService('Players').LocalPlayer.Character;
local stamina = game:GetService("Players").LocalPlayer.Character.Stamina;
       
getgenv().autoSquat = t;
       
while getgenv().autoSquat and stamina.Value >= 99 do task.wait(cooldown)
   for i,v in pairs(backpack:GetChildren()) do
       game:GetService("ReplicatedStorage").Communication.Events.ActivateTraining:FireServer("Squat")
       if v.Name == "Squats" then
           v.Parent = chr
       end
   end
end
end)

Label = Page:CreateLabel("Note: Won't show training animations")

ENJOY!

Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!