The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Dungeon Quest! script pastebin roblox
By LINK GAME on 2024-09-19 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. setsimulationradius(math.huge,math.huge)
  2. for i,v in pairs(workspace:GetDescendants()) do
  3. if v:IsA("Humanoid") and v.Parent:FindFirstChild("enemyStyle") then
  4. v.Health = 0
  5. end
  6. end
  7. workspace.DescendantAdded:Connect(function(d)
  8. pcall(function()
  9. repeat wait() until d.Parent:FindFirstChild("enemyStyle")
  10. if d:IsA("Humanoid") then
  11. d.Health=0
  12. end
  13. end)
  14. end)