Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. local me = game.Players.LocalPlayer
  2. local spinRemote = game:GetService("ReplicatedStorage").Remotes.Spin
  3.  
  4. function getFolder()
  5. for i,v in pairs(workspace:GetChildren()) do
  6. if v:IsA("Folder") and v:FindFirstChild("Spin") then
  7. return v
  8. end
  9. end
  10. end
  11.  
  12. function hasValue(table, element)
  13. for _, value in pairs(table) do
  14. if value == element then
  15. return true
  16. end
  17. end
  18. return false
  19. end
  20.  
  21. quirk_ids = {30,16,6,2,1} --Change those numbers to the quirks you want to try and get.
  22.  
  23. while hasValue(quirk_ids, getFolder().PlayerData[me.Name].Quirk.Value) ~= true do --replace
  24. spinRemote:FireServer("CommonSpin")
  25. wait(1)
  26. end
  27.  
  28. 1 - Half Hot Half Cold
  29. 2 - One for All
  30. 6 - Explosion
  31. 13 - Deku One for All
  32. 16 - Overhaul
  33. 30 - All For One
  34.  
  35. 3 - Quirkless
  36. 19 - Cremation
  37. 20 - Dark Shadow
  38. 21 - Muscle Augmentation
  39. 26 - Decay
  40. 28 - Creation
  41.  
  42. 7 - Electrification
  43. 8 - Warp Gate
  44. 11 - Air Propulsion
  45. 12 - Shock Absorbtion
  46. 15 - Hellflame
  47. 18 - Black Hole
  48. 22 - Permeation
  49. 23 - Pop Off
  50. 27 - Acid
  51. 29 - Clones
  52.  
  53. 0 - Engine
  54. 4 - Zero Gravity
  55. 5 - Regen
  56. 9 - Gigantification
  57. 10 - Voice
  58. 14 - Hardening
  59. 17 - Jet
  60. 24 - Somnambulist
  61. 25 - Navel Laser
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement