local function rgb255RichText(color3) local R=(color3.R*255) local G=(color3.G*255) local B=(color3.B*255) return string.format("rgb(%d,%d,%d)",R,G,B) end local OldNameCall OldNameCall=hookmetamethod(game,"__newindex",function(A,B,...) if not checkcaller() and (B=="WalkSpeed" or B=="JumpPower") then return end return OldNameCall(A,B,...) end) local SolarisLib=loadstring(game:HttpGet("https://raw.githubusercontent.com/L1ZOT/Team-Skeet/main/lib/Source.lua"))() local Client=SolarisLib.LP local Players=SolarisLib.Players local TweenService=SolarisLib.TweenService local customColor=Color3.fromRGB(94,151,42) local rgbText=rgb255RichText(customColor) local win=SolarisLib:New({ Name=[[TeamSkeet]],FolderToSave="TeamSkeet" }) local TabFarm=win:Tab("Autofarm") local Farming=TabFarm:Section("Farming") local Eggs=TabFarm:Section("Heros") local Fusing=TabFarm:Section("Fusing") local TabMisc=win:Tab("Misc") local SecMisc=TabMisc:Section("LocalPlayer") local TabCredits=win:Tab("Credits") local Credits=TabCredits:Section("Creators") Farming:Toggle("Auto Attack",false,"Toggle",function(t) Auto_Attack=t end) spawn(function() while task.wait() do if Auto_Attack then pcall(function() game:GetService("ReplicatedStorage").System.SystemClick.Click:FireServer() task.wait() end) end end end) function getChildrenInRange(parent,startIndex,endIndex) local children={} for i=startIndex,endIndex do local child=parent[i] if child then table.insert(children,child) end end return children end local enemies=game:GetService("Workspace").Enemy local enemyChildren=getChildrenInRange(enemies,1,9) local Enemies={} for i,v in pairs(enemyChildren) do for i,v in pairs(enemies[i]:GetChildren()) do if not table.find(Enemies,v.EnemyTag.NameLabel.Text) then table.insert(Enemies,v.EnemyTag.NameLabel.Text) end end end Farming:MultiDropdown("Select Enemy",Enemies,{},"Dropdown",function(t) Select_Enemy=t end) Farming:Toggle("Auto Farm (Selected Mob)",false,"Toggle",function(t) StartFarm=t end) spawn(function() while task.wait() do if StartFarm then pcall(function() for i,v in pairs(enemyChildren) do for i,v in pairs(enemies[i]:GetChildren()) do for i2,v2 in pairs(Select_Enemy) do if v.EnemyTag.NameLabel.Text==v2 and v:FindFirstChild("Humanoid") and v.HP.Value~=0 then Client.Character.HumanoidRootPart.CFrame=CFrame.new(v.StartPos.Value) repeat task.wait() Client.Character.HumanoidRootPart.CFrame=v.HumanoidRootPart.CFrame until not StartFarm or v.HP.Value<=0 end end end end end) end end end) Farming:Toggle("Auto Collect",false,"Toggle",function(t) AutoCollect=t end) function GetPlayerNames() local Playernames={} for i,v in pairs(Players:GetPlayers()) do table.insert(Playernames,v.Name) end return Playernames end local function collect(inst) for i,v in pairs(inst:GetChildren()) do if v.Name=="\50\68\231\137\169\229\147\129" then v.CFrame=Client.Character.HumanoidRootPart.CFrame end if not table.find(GetPlayerNames(),v.Name) and v.ClassName=="Model" then v.TouchPart.CFrame=Client.Character.HumanoidRootPart.CFrame end end end local function ChangeWeapName() for chinese,english in pairs(translations["Weapons"]) do for i,v in pairs(game:GetService("Workspace"):GetChildren()) do if v.Name==chinese then text=string.gsub(v.Name,chinese,english) v.Name=text end end end end spawn(function() while task.wait() do if AutoCollect then pcall(function() collect(game:GetService("Workspace")) end) end end end) Farming:Toggle("Auto Equip Best",false,"Toggle",function(t) Auto_Equip_Best=t end) spawn(function() while task.wait() do if Auto_Equip_Best then pcall(function() game:GetService("ReplicatedStorage").ServerMsg.WearBestPet:InvokeServer() end) end end end) Farming:Toggle("Auto Rebirth",false,"Toggle",function(t) Auto_Rebirth=t end) spawn(function() while task.wait() do if Auto_Rebirth then pcall(function() game:GetService("ReplicatedStorage").Msg.RemoteEvent:FireServer("\233\135\141\231\148\159") end) end end end) local table={ "Ninja","One Piece","Dragon Ball","Demon Slayer","Star","My hero","Titan","Naruto",} Eggs:Dropdown("Select Egg",table,"","Dropdown",function(t) Select_Hero=t end) Eggs:Toggle("Auto Hatch",false,"Toggle",function(t) if Select_Hero=="" then SolarisLib:Notification("Select Area","Select a Area!") else Auto_Open_Egg=t end end) local numlen Eggs:Toggle("Tripple Hatch",false,"Toggle",function(t) Tripple_Hatch=t if Tripple_Hatch then numlen=3 else numlen=1 end end) spawn(function() while task.wait() do if Auto_Open_Egg then pcall(function() local ohNumber1 if Select_Hero=="Ninja" then ohNumber1=7000001 end if Select_Hero=="One Piece" then ohNumber1=7000002 end if Select_Hero=="Dragon Ball" then ohNumber1=7000003 end if Select_Hero=="Demon Slayer" then ohNumber1=7000004 end if Select_Hero=="Star" then ohNumber1=7000005 end if Select_Hero=="My hero" then ohNumber1=7000006 end if Select_Hero=="Titan" then ohNumber1=7000007 end if Select_Hero=="Naruto" then ohNumber1=7000008 end game:GetService("ReplicatedStorage").Tool.DrawUp.Msg.DrawHero:InvokeServer(ohNumber1,numlen) end) end end end) Fusing:Toggle("Auto Fuse Weapons",false,"Toggle",function(t) Auto_Fuse_Weapon=t end) spawn(function() while task.wait() do if Auto_Fuse_Weapon then pcall(function() for i,v in pairs(Client.PlayerGui.ScreenGui["\230\173\166\229\153\168"].Frame.ScrollPet:GetChildren()) do if v.ClassName=="ImageButton" then local ohString1="\230\173\166\229\153\168\229\144\136\230\136\144" local ohNumber2=v.onlyID.Value game:GetService("ReplicatedStorage").Msg.RemoteEvent:FireServer(ohString1,ohNumber2) wait(.1) end end end) end end end) SecMisc:Slider("Walk Speed",1,400,57,1,"Slider",function(v) Client.Character.Humanoid.WalkSpeed=v end) SecMisc:Slider("Jump Power",1,400,60,1,"Slider",function(v) Client.Character.Humanoid.JumpPower=v end) Credits:Button("Mana#9724",function() setclipboard("Mana#9724") end) Credits:Button("Discord",function() local req=(syn and syn.request) or (http and http.request) or http_request or nil if req~=nil then for port=6463,6472,1 do local inv='http://127.0.0.1:' .. tostring(port) .. '/rpc?v=1' local http=game:GetService('HttpService') local t={ cmd='INVITE_BROWSER',args={ ['code']='PKx8qevgMk' },nonce=string.lower(http:GenerateGUID(false)) } local post=http:JSONEncode(t) req({ Url=inv,Method='POST',Body=post,Headers={ ['Content-Type']='application/json',['Origin']='https://discord.com' } }) end end end)