From venuslockscript, 8 Months ago, written in Lua.
Embed
  1. while wait() do
  2. for i,v in next, game:GetService('Workspace').Zombies:GetChildren() do
  3. pcall(function()
  4. v.HumanoidRootPart.Size = Vector3.new(100,100,100)
  5. v.HumanoidRootPart.Transparency = 0.7
  6. v.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  7. v.HumanoidRootPart.Material = "Neon"
  8. v.HumanoidRootPart.CanCollide = false
  9. end)
  10. end
  11. end