Advertisement
Narsuki_Suki

PetClicker X Simulator

Aug 21st, 2023
1,354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.87 KB | None | 0 0
  1. local CoastingLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/GhostDuckyy/UI-Libraries/main/Coasting%20Ui%20Lib/source.lua"))()
  2.  
  3. local AimbotTab = CoastingLibrary:CreateTab("Auto")
  4. local MainSection = AimbotTab:CreateSection("Main")
  5. local ConfigSection = AimbotTab:CreateSection("Script Loader")
  6. local eggTab = CoastingLibrary:CreateTab("Egg")
  7. local egg = eggTab:CreateSection("Auto Hatch Eggs")
  8.  
  9. ConfigSection:CreateButton("Infinite Jump", function()--load infinite jump
  10.     loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()    
  11. end)
  12.  
  13. ConfigSection:CreateButton("Remove Legs", function()--load remove legs
  14.     loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Remove%20Legs.txt"))()
  15. end)
  16.  
  17. ConfigSection:CreateButton("Anti-AFK", function()--load anit-afk
  18.     loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/anti-afk%20via%20autofocus.txt"))()
  19. end)
  20.  
  21. MainSection:CreateButton("Auto Equip Best Pets", function()--auto equip pets
  22.  
  23.     local args = {
  24.         [1] = "equip_best",
  25.         [2] = {
  26.             ["6_1005"] = 0,
  27.             ["4_1002"] = 0,
  28.             ["5_1003"] = 0
  29.         }
  30.     }
  31.    
  32.     game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("InventoryEvent"):FireServer(unpack(args))
  33.      
  34. end)
  35.  
  36. MainSection:CreateLabel("Namey", "Made By MSI BURMA")--name
  37. MainSection:CreateLabel("jpo", "I will update this script")
  38. MainSection:CreateLabel("oke", "PetClicker X Simulator")--game name
  39.  
  40. MainSection:CreateToggle("Auto Click", function(boolean)--auto clicker
  41.     if _G.autoTap then
  42.         _G.autoTap = false;
  43.     else
  44.         _G.autoTap = true;
  45.     end
  46.    
  47.     while _G.autoTap do
  48.     local args = {
  49.         [1] = "cReq",
  50.         [2] = false
  51.     }
  52.  
  53.         game:GetService("ReplicatedStorage").events.ClickEvent:FireServer(unpack(args))
  54.         task.wait(0.05)
  55.     end
  56. end)
  57.  
  58. egg:CreateToggle("2500 Egg", function(boolean)--auto 2500 egg
  59.     if _G.autoTap then
  60.         _G.autoTap = false;
  61.     else
  62.         _G.autoTap = true;
  63.     end
  64.    
  65.     while _G.autoTap do
  66.  
  67.         local args = {
  68.             [1] = "egg_Hatch",
  69.             [2] = "Zone_0",
  70.             [3] = "hatch"
  71.         }
  72.        
  73.         game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("HatcherEvent"):FireServer(unpack(args))
  74.        
  75.  
  76.  
  77.         task.wait(0.05)
  78.     end
  79. end)
  80.  
  81. egg:CreateToggle("50000 Egg", function(boolean)--auto 50000 egg
  82.     if _G.autoTap then
  83.         _G.autoTap = false;
  84.     else
  85.         _G.autoTap = true;
  86.     end
  87.    
  88.     while _G.autoTap do
  89.  
  90.         local args = {
  91.             [1] = "egg_Hatch",
  92.             [2] = "Zone_1",
  93.             [3] = "hatch"
  94.         }
  95.        
  96.         game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("HatcherEvent"):FireServer(unpack(args))
  97.         task.wait(0.05)
  98.     end
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement