NukeVsCity

Dungeon Quest OP SCRIPT

Feb 11th, 2021 (edited)
6,879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1.  
  2.  
  3. local lobbyTime = "1" -- How long it takes for you to load into the Lobby.
  4. local floorTime = "1" -- How long it takes for you to load into the Wave Defense.
  5.  
  6. if game.PlaceId == 2414851778 then
  7. wait(lobbyTime)
  8. game:GetService("ReplicatedStorage").remotes.loadPlayerCharacter:FireServer()
  9. wait(1)
  10. loadstring(game:HttpGet('https://raw.githubusercontent.com/owlsk/Dungeon-Quest/main/levelCheck.lua'))()
  11. wait(3)
  12. game:GetService("ReplicatedStorage").remotes.startDungeon:FireServer()
  13. end
  14.  
  15. if game.PlaceId == 3220974599 then
  16. wait(floorTime)
  17. game:GetService("ReplicatedStorage").remotes.changeStartValue:FireServer()
  18. wait(1)
  19. setsimulationradius(math.huge,math.huge)
  20.  
  21. while wait() do
  22. for i,v in pairs(game:GetService("Workspace").enemies:GetChildren()) do
  23. if v:FindFirstChild("Humanoid") then
  24. v.Humanoid.Health = 0
  25. end
  26. end
  27. end
  28. end
Add Comment
Please, Sign In to add comment