--Meow For Cookie local l = loadstring(game:HttpGet("\104\116\116\112\115\58\47\47\114\97\119\46\103\105\116\104\117\98\117\115\101\114\99\111\110\116\101\110\116\46\99\111\109\47\108\105\101\98\101\114\116\115\120\47\84\111\114\97\45\76\105\98\114\97\114\121\47\109\97\105\110\47\115\114\99\47\108\105\98\114\97\114\121",true))() local RS, TS, PL = game:GetService("RunService"), game:GetService("TeleportService"), game:GetService("Players") local lp = PL.LocalPlayer local SG = game:GetService("StarterGui") local tab = l:CreateWindow("+1 Abs Per Click") local f = tab:AddFolder("Main") local function nt(t, x) SG:SetCore("SendNotification", {Title = t, Text = x, Duration = 5}) end local at = false f:AddToggle({text = "Fast Auto Train", flag = "fat", callback = function(s) at = s if at then task.spawn(function() while at do for i = 1, 100 do game:GetService("ReplicatedStorage").TrainingSystem.DoCrunch:FireServer() end task.wait() end end) end end}) local ab = false f:AddToggle({text = "Auto Perfect Hit Boss", flag = "aphb", callback = function(s) ab = s if ab then nt("Tora GUI", "Hit Damage=You Max Streng Power") task.spawn(function() while ab do game:GetService("ReplicatedStorage").BattleSystem.SubmitSkillCheck:FireServer(0.45176875591278076) task.wait(0.5) end end) end end}) f:AddSlider({text = "WalkSpeed", min = 16, max = 500, type = "slider", callback = function(v) if lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.WalkSpeed = v end end}) f:AddButton({text = "Rejoin", flag = "rj", callback = function() queue_on_teleport([[loadstring(game:HttpGet("\104\116\116\112\115\58\47\47\112\97\115\116\101\98\105\110\46\99\111\109\47\114\97\119\47\67\114\83\53\107\83\120\115",true))()]]) if #PL:GetPlayers() <= 1 then TS:Teleport(game.PlaceId, lp) else TS:TeleportToPlaceInstance(game.PlaceId, game.JobId, lp) end end}) f:AddButton({text = "by Marvellous*", flag = "mv", callback = function() setclipboard("\104\116\116\112\115\58\47\47\115\99\114\105\112\116\98\108\111\120\46\99\111\109\47\117\47\77\97\114\118\101\108\108\111\117\115\42") nt("Success", "Link copied to clipboard!") end}) l:Init()