Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local CoastingLibrary = loadstring(game:HttpGet("https://raw.githubusercontent.com/GhostDuckyy/UI-Libraries/main/Coasting%20Ui%20Lib/source.lua"))()
- local AimbotTab = CoastingLibrary:CreateTab("Auto")
- local MainSection = AimbotTab:CreateSection("Main")
- local ConfigSection = AimbotTab:CreateSection("Script Loader")
- local eggTab = CoastingLibrary:CreateTab("Egg")
- local egg = eggTab:CreateSection("Auto Hatch Eggs")
- ConfigSection:CreateButton("Infinite Jump", function()--load infinite jump
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Infinite%20Jump.txt"))()
- end)
- ConfigSection:CreateButton("Remove Legs", function()--load remove legs
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Remove%20Legs.txt"))()
- end)
- ConfigSection:CreateButton("Anti-AFK", function()--load anit-afk
- loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/anti-afk%20via%20autofocus.txt"))()
- end)
- MainSection:CreateButton("Auto Equip Best Pets", function()--auto equip pets
- local args = {
- [1] = "equip_best",
- [2] = {
- ["6_1005"] = 0,
- ["4_1002"] = 0,
- ["5_1003"] = 0
- }
- }
- game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("InventoryEvent"):FireServer(unpack(args))
- end)
- MainSection:CreateLabel("Namey", "Made By MSI BURMA")--name
- MainSection:CreateLabel("jpo", "I will update this script")
- MainSection:CreateLabel("oke", "PetClicker X Simulator")--game name
- MainSection:CreateToggle("Auto Click", function(boolean)--auto clicker
- if _G.autoTap then
- _G.autoTap = false;
- else
- _G.autoTap = true;
- end
- while _G.autoTap do
- local args = {
- [1] = "cReq",
- [2] = false
- }
- game:GetService("ReplicatedStorage").events.ClickEvent:FireServer(unpack(args))
- task.wait(0.05)
- end
- end)
- egg:CreateToggle("2500 Egg", function(boolean)--auto 2500 egg
- if _G.autoTap then
- _G.autoTap = false;
- else
- _G.autoTap = true;
- end
- while _G.autoTap do
- local args = {
- [1] = "egg_Hatch",
- [2] = "Zone_0",
- [3] = "hatch"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("HatcherEvent"):FireServer(unpack(args))
- task.wait(0.05)
- end
- end)
- egg:CreateToggle("50000 Egg", function(boolean)--auto 50000 egg
- if _G.autoTap then
- _G.autoTap = false;
- else
- _G.autoTap = true;
- end
- while _G.autoTap do
- local args = {
- [1] = "egg_Hatch",
- [2] = "Zone_1",
- [3] = "hatch"
- }
- game:GetService("ReplicatedStorage"):WaitForChild("events"):WaitForChild("HatcherEvent"):FireServer(unpack(args))
- task.wait(0.05)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement