Advertisement
XxSpiritDuoxX

Custom Challenge Example

Jan 26th, 2022
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Challenge: Test Challenge
  2. Creator: XxSpiritDuoxX
  3.  
  4. Custom Tower Loadout (This is optional whether or not you want to include this into your challenge):
  5. Slot1: ???
  6. Slot2: ???
  7. Slot3: ???
  8. Slot4: ???
  9. Slot5: ???
  10. Ability1: ???
  11. Ability2: ???
  12. Ability3: ???
  13. ComboSlot: ???
  14.  
  15. Waves:
  16.  
  17. module.Wave_1 = function()
  18. stopProgress()
  19. diaModule.Dialouge2(
  20. "rbxassetid://8231702288", --Image to use
  21. "Leader", --name of the target
  22. 0.02, --Font type delay
  23. 12, --How long the message will appear for the player
  24. "Welcome to test challenge, Let it begin!" --Text they will say
  25. )
  26. spawnEnemy("Slow", 15, 0.2)
  27. startProgress()
  28. end
  29.  
  30. module.Wave_2 = function()
  31. stopProgress()
  32. spawnEnemy("Slow", 15, 0.2)
  33. startProgress()
  34. end
  35.  
  36. module.Wave_3 = function()
  37. stopProgress()
  38. spawnEnemy("Slow", 25, 0.2)
  39. diaModule.Dialouge2(
  40. "rbxassetid://8231702288", --Image to use
  41. "Leader", --name of the target
  42. 0.02, --Font type delay
  43. 12, --How long the message will appear for the player
  44. "Final enemy!, watch out!" --Text they will say
  45. )
  46. spawnEnemy("Massive", 1, 0.2)
  47. startProgress()
  48. end
  49.  
  50.  
  51. Extra Limitations (this is optional on whether you want to add this to your challenge or not):
  52. Towers cannot use token buffs
  53. X Tower Limit per player
  54. Towers cannot be upgraded beyond X level
  55. Max Players: ?
  56.  
  57. you can add more limitations here
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement