-- Remake by meowcanseememan ( https://scriptblox.com/u/meowcantseememan ) --- Original by hallworld ( https://scriptblox.com/u/hallworld ) ----------------------------------------------------------------------------- -- just like the original, you gotta get a gun first since the enemies are in the air local enemyNames = { "Robloxian", "Tiny Robloxian", "Angry Robloxian", "Gunner Robloxian", "Raging Robloxian", "Explosive Robloxian", "Giant Robloxian", "Rich Robloxian", "Tiny Angry Robloxian", "Crazy Robloxian", "Rox The Destroyer", "Snowballer Robloxian", -- can only be found in XMAS "Mummy", "Fast Mummy", "Strong Mummy", "Sandstone", "Carium", "Camel", "Goblin", "Skeleton", "Witch", "Buster Goblin", "Orc", "Assassin", "Green Fungus", "Blue Fungus", "Red Fungus", "Yellow Fungus", "Adalwolf", "Gavin The Wizard", "Melee Militant", "Gunner Militant", "Combatant Militant", "Medic Militant", "Brute Militant", "Grenader Militant", "Juggernaut", "Sword Fighter", "Windforce Fighter", "Ghostwalker Fighter", "Icedagger Fighter", "Firebrand Fighter", "Venomshank Fighter", "Illumina Fighter", "Darkheart Fighter", "Sword Master", "Shedletsky", "Crawler Specimen", "Puncher Specimen", "Ankle Biter Specimen", "Freezer Specimen", "Bloater Specimen", "Burner Specimen", "Scratcher Specimen", "Spitter Specimen", "Pummeler Specimen", "Rogue Super Soldier", "Classic Robloxian", "Classic Rocketeer Robloxian", "Classic Swordsman Robloxian", "Classic Criminal Robloxian", "Classic Explosive Robloxian", "Classic Paintballer Robloxian", "Classic Giant Robloxian", "Bigfoot", "Mr Pwnage", "Dum Dum", "Spitter Dum Dum", "Big Dum Dum", "King Dum Dum", "Sworder Robloxian", "Archer Robloxian", "Pistolian Robloxian", "Assaulter Robloxian", "Hammer Robloxian", "Enforcer Robloxian", "Explosive Robloxian", "Grenadier Robloxian", "Shotgunner Robloxian", "Ample Robloxian", "Sharpshooter Robloxian", "Warrior Robloxian", "Recon Robloxian", "Cannoneer Robloxian", "Suppressor Robloxian", "Assassin Robloxian", "Demolition Robloxian", "Specialist Robloxian", "Striker Robloxian", "Juggernaut Robloxian", "Agent Robloxian", "Rioter Robloxian", "Lady Robloxian", "Special Care Robloxian", "Intel Robloxian", "Aurora", "Cherry", "Cinnamon", "Marksman Robloxian", "Executioner Robloxian", "Scientist Robloxian", "Gladiator Robloxian", "Scout Robloxian", "Mini Rox", "Hyperlaser Robloxian", "Berserker Robloxian", "Railgunner Robloxian", "Destructive Giant", "Crazy Robloxian", "Rox The Destroyer", "Killbot-1337", "Rambo Randy", "Quickshot Jimmy", "Buyer", "Commander Hawk", "Ellis", "Angel Lucy", } local function resizeTorso(part, scale) part.Size = part.Size * scale part.CanCollide = false part.CanQuery = false part.CanTouch = false part.Transparency = 0.5 -- put how transparent is the torso end -- if you want to stop the modification from running click L (on keyboard) local function resetTorso(part, originalSize, originalTransparency) part.Size = originalSize part.CanCollide = true part.CanQuery = true part.CanTouch = true part.Transparency = originalTransparency end local originalProperties = {} -- loop to auto check for enemies local running = true while running do for _, enemyName in ipairs(enemyNames) do for _, instance in ipairs(workspace:GetChildren()) do if instance:IsA("Model") and instance.Name == enemyName then local torso = instance:FindFirstChild("Torso") if torso and not originalProperties[torso] then -- restore original torso size originalProperties[torso] = { Size = torso.Size, Transparency = torso.Transparency } -- resize torso resizeTorso(torso, 10) end end end end wait(0.1) -- it checks every 0.1 seconds ig end --key press detection game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.L then running = false -- revert torso to normal for torso, properties in pairs(originalProperties) do resetTorso(torso, properties.Size, properties.Transparency) end end end) -- hello