Advertisement
Guest User

Grand Quest

a guest
Jul 20th, 2019
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. --GC
  2.  
  3. for i=1,10000 do
  4. game.ReplicatedStorage.Events.Quest:InvokeServer("start", "Quest1")
  5. wait()
  6. game.ReplicatedStorage.Events.Quest:InvokeServer("reward", "Quest1", 300)
  7. end
  8.  
  9. --Stat levels
  10.  
  11. for i=1,275 do
  12. game.ReplicatedStorage.Events.Quest:InvokeServer("start", "Quest5")
  13. wait()
  14. game.ReplicatedStorage.Events.Quest:InvokeServer("reward", "Quest5")
  15. end
  16.  
  17. --Hero fame
  18.  
  19. for i=1,1000 do
  20. game.ReplicatedStorage.Events.Quest:InvokeServer("start", "Quest2")
  21. wait()
  22. game.ReplicatedStorage.Events.Quest:InvokeServer("reward", "Quest2")
  23. end
  24.  
  25. --Villain fame
  26.  
  27. for i=1,1000 do
  28. game.ReplicatedStorage.Events.Quest:InvokeServer("start", "Quest3")
  29. wait()
  30. game.ReplicatedStorage.Events.Quest:InvokeServer("reward", "Quest3")
  31. end
  32.  
  33. -- all for one script
  34.  
  35. game.ReplicatedStorage["StatsYOURNAMEGOESHERE"].Quirk.Value = "Desired Quirk"
  36.  
  37. -- quirk list (One For All, FullCowl, Explosion, HHHC, Lightning, Acid, Engine, Creation, Hell Flame, and some other bitches that are shit quirks lmao)
  38.  
  39.  
  40. game.ReplicatedStorage.Events.FullCowl:FireServer("2", "kfcisgood")
  41.  
  42. -- alright quick tutorial for the script you see above. the variable "2" is the second move of the quirk named "FullCowl", if you want to use the first move of "FullCowl" then change "2" to "1". Pretty self explanatory once you get the hang of it, also, you can change "FullCowl" to other quirks that are listed above. If the quirks have a space in their name, remove the space. DON'T CHANGE "kfcisgood", if you're still confused about anything just hit my dms
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement