From venuslockscript, 6 Months ago, written in Lua.
Embed
  1. -- Variable
  2. local player = game.Players.LocalPlayer
  3. local de = game:GetService("Debris")
  4.  
  5. -- Function
  6. function InfCombo(c)
  7.     local head = c:WaitForChild("Head")
  8.     head.DescendantAdded:Connect(function(v)
  9.         if v:IsA("Script") then
  10.             de:AddItem(v,0.5)
  11.         end
  12.     end)
  13. end
  14.  
  15. -- Connect
  16. player.CharacterAdded:Connect(InfCombo)
  17. InfCombo(player.Character)