-- Obfuscation are for clowns local players = game:GetService("Players") local rs = game:GetService("ReplicatedStorage") local screenGui = Instance.new("ScreenGui", game:GetService("CoreGui").RobloxGui) screenGui.ResetOnSpawn = false local gui = Instance.new("Frame", screenGui) gui.Size = UDim2.new(0, 150, 0, 80) gui.Position = UDim2.new(0.5, -75, 0.5, -40) gui.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Instance.new("UICorner", gui) Instance.new("UIDragDetector", gui) local title = Instance.new("TextLabel", gui) title.Text = "Simple Like Spammer" title.Size = UDim2.new(1, 0, 0, 20) title.BackgroundTransparency = 1 title.TextColor3 = Color3.new() title.Font = Enum.Font.SourceSans title.TextSize = 18 local btn = Instance.new("TextButton", gui) btn.Size = UDim2.new(0.8, 0, 0, 25) btn.Position = UDim2.new(0.1, 0, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) btn.Text = "KABOOM⚡️" btn.TextColor3 = Color3.new(250,250,250) btn.Font = Enum.Font.SourceSans btn.TextSize = 16 btn.MouseButton1Click:Connect(function() local senial = rs.senial local function fireRemote(action) for _, p in ipairs(players:GetPlayers()) do senial:FireServer(action, p.Name) end end task.spawn(function() while true do fireRemote("obtener") task.wait(0.1) end end) task.spawn(function() while true do fireRemote("quitar") task.wait(0.1) end end) end)