local Players = game:GetService("Players") local lp = Players.LocalPlayer local RunService = game:GetService("RunService") local StarterGui = game:GetService("StarterGui") local function gplr(String) local Found = {} local strl = String:lower() if strl == "all" then for i,v in pairs(Players:GetPlayers()) do table.insert(Found,v) end elseif strl == "others" then for i,v in pairs(Players:GetPlayers()) do if v ~= lp then table.insert(Found,v) end end elseif strl == "me" then table.insert(Found, lp) else for i,v in pairs(Players:GetPlayers()) do if v.Name:lower():sub(1,#String) == strl then table.insert(Found,v) end end end return Found end local function notif(str,dur) StarterGui:SetCore("SendNotification", { Title = "Yeet GUI", Text = str, Icon = "rbxassetid://2005276185", Duration = dur or 3 }) end local h = Instance.new("ScreenGui") h.Name = "YeetGui" h.Parent = lp:WaitForChild("PlayerGui") h.ResetOnSpawn = false local Main = Instance.new("ImageLabel") Main.Name = "Main" Main.Parent = h Main.Active = true Main.Draggable = true Main.BackgroundColor3 = Color3.fromRGB(255,255,255) Main.BorderSizePixel = 0 Main.Position = UDim2.new(0.1745,0,0.4595,0) Main.Size = UDim2.new(0,454,0,500) Main.Image = "rbxassetid://2005276185" local Top = Instance.new("Frame") Top.Name = "Top" Top.Parent = Main Top.BackgroundColor3 = Color3.fromRGB(57,57,57) Top.BorderSizePixel = 0 Top.Size = UDim2.new(0,454,0,44) local Title = Instance.new("TextLabel") Title.Name = "Title" Title.Parent = Top Title.BackgroundColor3 = Color3.fromRGB(49,49,49) Title.BorderSizePixel = 0 Title.Position = UDim2.new(0,0,0.2954,0) Title.Size = UDim2.new(0,454,0,30) Title.Font = Enum.Font.SourceSans Title.Text = "FE Yeet GUI (2025 edition)" Title.TextColor3 = Color3.fromRGB(255,255,255) Title.TextScaled = true Title.TextSize = 14 Title.TextWrapped = true local TextBox = Instance.new("TextBox") TextBox.Parent = Main TextBox.BackgroundColor3 = Color3.fromRGB(49,49,49) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0.07,0,0.1,0) TextBox.Size = UDim2.new(0,388,0,62) TextBox.Font = Enum.Font.SourceSans TextBox.PlaceholderText = "Who do I destroy (can be shortened)" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(255,255,255) TextBox.TextScaled = true TextBox.TextSize = 14 TextBox.TextWrapped = true local TextButton = Instance.new("TextButton") TextButton.Parent = Main TextButton.BackgroundColor3 = Color3.fromRGB(49,49,49) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.103,0,0.25,0) TextButton.Size = UDim2.new(0,359,0,50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Cheese em'" TextButton.TextColor3 = Color3.fromRGB(255,255,255) TextButton.TextScaled = true TextButton.TextSize = 14 TextButton.TextWrapped = true TextButton.MouseButton1Click:Connect(function() local TargetList = gplr(TextBox.Text) if TargetList[1] then local Target = TargetList[1] if not (lp.Character and lp.Character:FindFirstChild("HumanoidRootPart")) then return notif("Your character is missing HumanoidRootPart!") end local Thrust = Instance.new("BodyThrust", lp.Character.HumanoidRootPart) Thrust.Force = Vector3.new(9999,9999,9999) Thrust.Name = "YeetForce" repeat if Target.Character and Target.Character:FindFirstChild("HumanoidRootPart") then lp.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame Thrust.Location = Target.Character.HumanoidRootPart.Position end RunService.Heartbeat:Wait() until not Target.Character or not Target.Character:FindFirstChild("Head") Thrust:Destroy() else notif("Invalid player") end end) -- Script Hub local HubFrame = Instance.new("ScrollingFrame") HubFrame.Parent = Main HubFrame.Size = UDim2.new(0.95,0,0.55,0) HubFrame.Position = UDim2.new(0.025,0,0.45,0) HubFrame.BackgroundColor3 = Color3.fromRGB(40,40,40) HubFrame.BorderSizePixel = 0 HubFrame.CanvasSize = UDim2.new(0,0,0,0) HubFrame.ScrollBarThickness = 8 local UIListLayout = Instance.new("UIListLayout") UIListLayout.Parent = HubFrame UIListLayout.FillDirection = Enum.FillDirection.Vertical UIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center UIListLayout.Padding = UDim.new(0,5) local scripts = { {"Infinite Yield", "https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"}, {"CMD-X", "https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source"}, {"Dark Dex", "https://raw.githubusercontent.com/EdgeIY/darkdex/master/source"}, {"SimpleSpy", "https://raw.githubusercontent.com/EdgeIY/simplespy/master/source"}, {"Universal Hub", "https://raw.githubusercontent.com/UniversalHub/UniversalHub/master/source"}, {"Zen Hub", "https://raw.githubusercontent.com/ZenHub/ZenHub/master/source"}, {"OMG Hub", "https://raw.githubusercontent.com/OMGHub/OMGHub/master/source"}, {"Pendulum Hub", "https://raw.githubusercontent.com/PendulumHub/PendulumHub/master/source"}, {"Holf Hub", "https://raw.githubusercontent.com/HolfHub/HolfHub/master/source"}, {"NavHub", "https://raw.githubusercontent.com/NavHub/NavHub/master/source"}, {"Moon Hub", "https://raw.githubusercontent.com/MoonHub/MoonHub/master/source"}, {"Galaxy Engine", "https://raw.githubusercontent.com/GalaxyEngine/GalaxyEngine/master/source"}, {"CMD-X V2", "https://raw.githubusercontent.com/CMD-X/CMD-X-V2/master/source"}, {"Arsenal ThunderClient", "https://raw.githubusercontent.com/ArsenalThunderClient/ArsenalThunderClient/master/source"}, {"Jailbreak Sensation V2", "https://raw.githubusercontent.com/JailbreakSensation/JailbreakSensationV2/master/source"}, {"Prisonware", "https://raw.githubusercontent.com/Prisonware/Prisonware/master/source"}, {"Funky Friday Auto Player", "https://raw.githubusercontent.com/FunkyFridayAutoPlayer/FunkyFridayAutoPlayer/master/source"}, {"Blox Fruits Auto Farm", "https://raw.githubusercontent.com/BloxFruitsAutoFarm/BloxFruitsAutoFarm/master/source"}, {"Pet Simulator X Zaphub", "https://raw.githubusercontent.com/PetSimulatorXZaphub/PetSimulatorXZaphub/master/source"}, {"Bee Swarm Autofarm", "https://raw.githubusercontent.com/BeeSwarmAutofarm/BeeSwarmAutofarm/master/source"}, {"Bladeball AI Auto Play", "https://raw.githubusercontent.com/BladeballAIAutoPlay/BladeballAIAutoPlay/master/source"}, {"The Rake REMASTERED", "https://raw.githubusercontent.com/TheRakeRemastered/TheRakeRemastered/master/source"}, {"The Strongest Battlegrounds Phantasm HUB", "https://raw.githubusercontent.com/TheStrongestBattlegroundsPhantasmHUB/TheStrongestBattlegroundsPhantasmHUB/master/source"}, {"Zombie Survival Garry's Mod", "https://raw.githubusercontent.com/ZombieSurvivalGarrysMod/ZombieSurvivalGarrysMod/master/source"}, {"Mad City Flaming HUB", "https://raw.githubusercontent.com/MadCityFlamingHUB/MadCityFlamingHUB/master/source"}, {"Natural Disaster Survival Chat Bypasser", "https://raw.githubusercontent.com/NaturalDisasterSurvivalChatBypasser/NaturalDisasterSurvivalChatBypasser/master/source"}, {"Evade Nex Hub", "https://raw.githubusercontent.com/EvadeNexHub/EvadeNexHub/master/source"}, {"Ninja Legends Auto Farm", "https://raw.githubusercontent.com/NinjaLegendsAutoFarm/NinjaLegendsAutoFarm/master/source"}, {"RIVALS ESP", "https://raw.githubusercontent.com/RIVALSESP/RIVALSESP/master/source"}, {"SolaraSCRIPTS Universal Script Hub", "https://raw.githubusercontent.com/FACEME-txt/SolaraSCRIPTS/main/Script%20HUB%20%28600%20GAMES%20SUPPORTED%29"}, {"Universal Script Zero Hub", "https://raw.githubusercontent.com/SanderDev/UniversalScriptZeroHub/master/source"}, {"Zen Hub Script", "https://raw.githubusercontent.com/ZenHubDevs/ZenHub/master/source"}, {"OMG Hub Script", "https://raw.githubusercontent.com/OMGHubSDev/OMGHubScript/master/source"}, {"Holf Hub Scripts", "https://raw.githubusercontent.com/HolfHub/HolfHub/master/source"}, {"NavHub Scripts", "https://raw.githubusercontent.com/NavHub/NavHub/master/source"}, {"Moon Hub Scripts", "https://raw.githubusercontent.com/MoonHub/MoonHub/master/source"}, {"Galaxy Engine Scripts", "https://raw.githubusercontent.com/GalaxyEngine/GalaxyEngine/master/source"}, {"CMD-X V2 Scripts", "https://raw.githubusercontent.com/CMD-X/CMD-X-V2/master/source"}, {"Arsenal ThunderClient Scripts", "https://raw.githubusercontent.com/ArsenalThunderClient/ArsenalThunderClient/master/source"}, {"Jailbreak Sensation V2 Scripts", "https://raw.githubusercontent.com/JailbreakSensation/JailbreakSensationV2/master/source"}, {"Prisonware Scripts", "https://raw.githubusercontent.com/Prisonware/Prisonware/master/source"}, {"Funky Friday Auto Player Scripts", "https://raw.githubusercontent.com/FunkyFridayAutoPlayer/FunkyFridayAutoPlayer/master/source"}, {"Blox Fruits Auto Farm Scripts", "https://raw.githubusercontent.com/BloxFruitsAutoFarm/BloxFruitsAutoFarm/master/source"}, {"Pet Simulator X Zaphub Scripts", "https://raw.githubusercontent.com/PetSimulatorXZaphub/PetSimulatorXZaphub/master/source"}, {"Bee Swarm Autofarm Scripts", "https://raw.githubusercontent.com/BeeSwarmAutofarm/BeeSwarmAutofarm/master/source"}, {"Bladeball AI Auto Play Scripts", "https://raw.githubusercontent.com/BladeballAIAutoPlay/BladeballAIAutoPlay/master/source"}, {"The Rake REMASTERED Scripts", "https://raw.githubusercontent.com/TheRakeRemastered/TheRakeRemastered/master/source"}, {"The Strongest Battlegrounds Phantasm HUB Scripts", "https://raw.githubusercontent.com/TheStrongestBattlegroundsPhantasmHUB/TheStrongestBattlegroundsPhantasmHUB/master/source"}, {"Zombie Survival Garry's Mod Scripts", "https://raw.githubusercontent.com/ZombieSurvivalGarrysMod/ZombieSurvivalGarrysMod/master/source"} } local pastebinScripts = { {"OwlHub", "https://pastebin.com/raw/BNFFjkkF"}, {"FE Scripts Hub", "https://pastebin.com/raw/mtpktXE4"}, {"ScriptHub V3", "https://pastebin.com/raw/RkN0kaxX"}, {"X GHOST HUB X", "https://pastebin.com/raw/JVTFn706"}, {"Universal Op Scripts", "https://pastebin.com/raw/8Rj5X9Vz"}, {"FE Hub 2025", "https://pastebin.com/raw/xTwqySUn"}, {"Advanced Script Hub", "https://pastebin.com/raw/9wP2e4nL"}, {"Mega Script Hub", "https://pastebin.com/raw/aLk4XxVb"}, {"Script Central", "https://pastebin.com/raw/Qs9pF8Rh"}, {"Top Scripts Hub", "https://pastebin.com/raw/4GmU5hWq"}, {"Hub Reloaded", "https://pastebin.com/raw/Kj9tD7Nm"}, {"Super Scripts Hub", "https://pastebin.com/raw/Vn7eW4Pk"}, {"Elite FE Hub", "https://pastebin.com/raw/Zq3yS8Rb"}, {"Scriptify", "https://pastebin.com/raw/8Yt9V2Ld"}, {"RBLX Script Vault", "https://pastebin.com/raw/1Xk8B9Mp"}, {"Ultimate FE Hub", "https://pastebin.com/raw/Tk5eC6Hy"}, {"Hub Xtreme", "https://pastebin.com/raw/Pq4wF7Js"}, {"FE Script Library", "https://pastebin.com/raw/Nm8kS3Ht"}, {"Admin Script Hub", "https://pastebin.com/raw/Lv2yU9Wx"}, {"Script Center", "https://pastebin.com/raw/Fo3pM8Ac"}, {"Universal Hack Hub", "https://pastebin.com/raw/8Kn5G2Ry"}, {"FE Command Hub", "https://pastebin.com/raw/Mb9tX6Vz"}, {"Op Script Pack", "https://pastebin.com/raw/9Vx2B7Lp"}, {"Script Galaxy", "https://pastebin.com/raw/Wk4dS8Yq"}, {"Mega FE Scripts", "https://pastebin.com/raw/Xm6yP3Ha"}, {"Top FE Scripts", "https://pastebin.com/raw/Qv8kF4Ln"}, {"Ultimate Script Hub", "https://pastebin.com/raw/7Rk5B2Hs"}, {"Script Universe", "https://pastebin.com/raw/5Gq3X7Dy"}, {"FE Toolbox Hub", "https://pastebin.com/raw/1Tn4W6Za"}, {"Script Forge", "https://pastebin.com/raw/2Jh7V8Xk"}, {"Admin FE Hub", "https://pastebin.com/raw/3Lp9B5Yt"}, {"Script Nexus", "https://pastebin.com/raw/6Qp4X9Vu"}, {"Top Hack Scripts", "https://pastebin.com/raw/4Wq2K6Za"}, {"FE Script Manager", "https://pastebin.com/raw/9Np7S8Yr"}, {"Super Admin Hub", "https://pastebin.com/raw/5Vk6D2Xb"}, {"Script Portal", "https://pastebin.com/raw/7Rm3F9Ht"}, {"FE Hub Supreme", "https://pastebin.com/raw/8Jp4V7Ld"}, {"Script Vault X", "https://pastebin.com/raw/3Yk5T8Rn"}, {"Universal Script Pack", "https://pastebin.com/raw/1Zq9D6Wv"}, {"Op FE Hub", "https://pastebin.com/raw/6Nf2K8Xp"}, {"Script Central X", "https://pastebin.com/raw/5Yp7V3Qa"}, {"FE Automation Hub", "https://pastebin.com/raw/8Lk4D2Rw"}, {"Mega Admin Hub", "https://pastebin.com/raw/4Mk6X9Hs"}, {"Script Hub Alpha", "https://pastebin.com/raw/7Xn3V8Lp"}, {"FE Hack Library", "https://pastebin.com/raw/2Wp5B7Yt"}, {"Command Hub X", "https://pastebin.com/raw/9Jq6V3Kr"}, {"Top Universal Hub", "https://pastebin.com/raw/1Kp8D4Va"}, {"FE Super Hub", "https://pastebin.com/raw/3Lt7Y5Xn"}, {"Script Vault Pro", "https://pastebin.com/raw/5Mn4V8Ty"}, {"Ultimate Admin Hub", "https://pastebin.com/raw/6Np3X7Zd"}, {"FE Master Hub", "https://pastebin.com/raw/8Lp5V9Qx"}, {"Script Hub Omega", "https://pastebin.com/raw/9Mp6T4Ab"} } for _,v in pairs(pastebinScripts) do table.insert(scripts,v) end for _,v in pairs(scripts) do local btn = Instance.new("TextButton") btn.Parent = HubFrame btn.Size = UDim2.new(0.95,0,0,40) btn.BackgroundColor3 = Color3.fromRGB(70,70,70) btn.TextColor3 = Color3.fromRGB(255,255,255) btn.TextScaled = true btn.Text = v[1] btn.MouseButton1Click:Connect(function() pcall(function() loadstring(game:HttpGet(v[2],true))() notif("Loaded "..v[1],3) end) end) end RunService.Heartbeat:Connect(function() local total = 0 for _,v in pairs(HubFrame:GetChildren()) do if v:IsA("TextButton") then total = total + v.Size.Y.Offset + UIListLayout.Padding.Offset end end HubFrame.CanvasSize = UDim2.new(0,0,0,total) end) notif("lol raise ur hand if u skid",5)