Advertisement
Guest User

Untitled

a guest
Jan 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 90.63 KB | None | 0 0
  1. -- Objects
  2. if game.CoreGui:FindFirstChild("Pokemon") then
  3. game.CoreGui:FindFirstChild("Pokemon"):Destroy()
  4. end
  5. local Pokemon = Instance.new("ScreenGui")
  6. local Box = Instance.new("Frame")
  7. local Tabs = Instance.new("Frame")
  8. local Main = Instance.new("TextButton")
  9. local Battle = Instance.new("TextButton")
  10. local Stats = Instance.new("TextButton")
  11. local Spawning = Instance.new("TextButton")
  12. local Top = Instance.new("TextLabel")
  13. local Bottom = Instance.new("TextLabel")
  14. local MainFrame = Instance.new("Frame")
  15. local Badges = Instance.new("TextButton")
  16. local TP = Instance.new("TextButton")
  17. local Pokedex = Instance.new("TextButton")
  18. local BP = Instance.new("TextButton")
  19. local Money = Instance.new("TextButton")
  20. local Amount = Instance.new("TextBox")
  21. local Items = Instance.new("TextButton")
  22. local Gamepass = Instance.new("TextButton")
  23. local Teleporting = Instance.new("ScrollingFrame")
  24. local AuraLab = Instance.new("TextButton")
  25. local Canyon = Instance.new("TextButton")
  26. local Celadon = Instance.new("TextButton")
  27. local Cerulean = Instance.new("TextButton")
  28. local Champion = Instance.new("TextButton")
  29. local Cinnabar = Instance.new("TextButton")
  30. local Elegant = Instance.new("TextButton")
  31. local Fuchsia = Instance.new("TextButton")
  32. local Indigo = Instance.new("TextButton")
  33. local Lavender = Instance.new("TextButton")
  34. local Mausoleum = Instance.new("TextButton")
  35. local Mausoleum2 = Instance.new("TextButton")
  36. local Moon = Instance.new("TextButton")
  37. local Mysterious = Instance.new("TextButton")
  38. local Pewter = Instance.new("TextButton")
  39. local Saffron = Instance.new("TextButton")
  40. local Vermillion = Instance.new("TextButton")
  41. local Viridian = Instance.new("TextButton")
  42. local BattleFrame = Instance.new("Frame")
  43. local Catch = Instance.new("TextButton")
  44. local Heal = Instance.new("TextButton")
  45. local Insane = Instance.new("TextButton")
  46. local TextLabel = Instance.new("TextLabel")
  47. local KillOpp = Instance.new("TextButton")
  48. local StatsFrame = Instance.new("ScrollingFrame")
  49. local Pokename = Instance.new("TextBox")
  50. local LevelA = Instance.new("TextBox")
  51. local NatureA = Instance.new("TextBox")
  52. local Level = Instance.new("TextButton")
  53. local Nature = Instance.new("TextButton")
  54. local IV = Instance.new("TextButton")
  55. local EVA = Instance.new("TextBox")
  56. local Atk = Instance.new("TextButton")
  57. local SpAtk = Instance.new("TextButton")
  58. local Spd = Instance.new("TextButton")
  59. local Def = Instance.new("TextButton")
  60. local SpDef = Instance.new("TextButton")
  61. local Health = Instance.new("TextButton")
  62. local Reset = Instance.new("TextButton")
  63. local SpawnFrame = Instance.new("ScrollingFrame")
  64. local TextLabel_2 = Instance.new("TextLabel")
  65. local Close = Instance.new("TextButton")
  66. local OpenFrame = Instance.new("Frame")
  67. local Open = Instance.new("TextButton")
  68.  
  69. -- Properties
  70.  
  71. Pokemon.Name = "Pokemon"
  72. Pokemon.Parent = game.CoreGui
  73.  
  74. Box.Name = "Box"
  75. Box.Parent = Pokemon
  76. Box.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  77. Box.BorderColor3 = Color3.new(0, 0, 0)
  78. Box.Position = UDim2.new(0, 296, 0, 99)
  79. Box.Size = UDim2.new(0, 445, 0, 233)
  80. Box.Active = true
  81. Box.Draggable = true
  82.  
  83. Tabs.Name = "Tabs"
  84. Tabs.Parent = Box
  85. Tabs.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  86. Tabs.BorderColor3 = Color3.new(0, 0, 0)
  87. Tabs.Size = UDim2.new(0, 318, 0, 58)
  88.  
  89. Main.Name = "Main"
  90. Main.Parent = Tabs
  91. Main.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  92. Main.BorderColor3 = Color3.new(0, 0, 0)
  93. Main.Position = UDim2.new(0, 3, 0, 30)
  94. Main.Size = UDim2.new(0, 74, 0, 25)
  95. Main.Font = Enum.Font.SourceSans
  96. Main.FontSize = Enum.FontSize.Size18
  97. Main.Text = "Main"
  98. Main.TextSize = 18
  99. Main.TextWrapped = true
  100.  
  101. Battle.Name = "Battle"
  102. Battle.Parent = Tabs
  103. Battle.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  104. Battle.BorderColor3 = Color3.new(0, 0, 0)
  105. Battle.Position = UDim2.new(0, 82, 0, 30)
  106. Battle.Size = UDim2.new(0, 74, 0, 25)
  107. Battle.Font = Enum.Font.SourceSans
  108. Battle.FontSize = Enum.FontSize.Size18
  109. Battle.Text = "Battle"
  110. Battle.TextSize = 18
  111. Battle.TextWrapped = true
  112.  
  113. Stats.Name = "Stats"
  114. Stats.Parent = Tabs
  115. Stats.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  116. Stats.BorderColor3 = Color3.new(0, 0, 0)
  117. Stats.Position = UDim2.new(0, 162, 0, 30)
  118. Stats.Size = UDim2.new(0, 74, 0, 25)
  119. Stats.Font = Enum.Font.SourceSans
  120. Stats.FontSize = Enum.FontSize.Size18
  121. Stats.Text = "Stats"
  122. Stats.TextSize = 18
  123. Stats.TextWrapped = true
  124.  
  125. Spawning.Name = "Spawning"
  126. Spawning.Parent = Tabs
  127. Spawning.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  128. Spawning.BorderColor3 = Color3.new(0, 0, 0)
  129. Spawning.Position = UDim2.new(0, 241, 0, 30)
  130. Spawning.Size = UDim2.new(0, 74, 0, 25)
  131. Spawning.Font = Enum.Font.SourceSans
  132. Spawning.FontSize = Enum.FontSize.Size18
  133. Spawning.Text = "Spawning"
  134. Spawning.TextSize = 18
  135. Spawning.TextWrapped = true
  136.  
  137. Top.Name = "Top"
  138. Top.Parent = Box
  139. Top.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  140. Top.BorderColor3 = Color3.new(0, 0, 0)
  141. Top.Size = UDim2.new(0, 445, 0, 23)
  142. Top.Font = Enum.Font.SourceSans
  143. Top.FontSize = Enum.FontSize.Size14
  144. Top.Text = "Project Pokemon GUI"
  145. Top.TextColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  146. Top.TextSize = 14
  147.  
  148. Bottom.Name = "Bottom"
  149. Bottom.Parent = Box
  150. Bottom.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  151. Bottom.BorderColor3 = Color3.new(0, 0, 0)
  152. Bottom.Position = UDim2.new(0, 0, 0, 201)
  153. Bottom.Size = UDim2.new(0, 445, 0, 32)
  154. Bottom.Font = Enum.Font.SourceSans
  155. Bottom.FontSize = Enum.FontSize.Size14
  156. Bottom.Text = ""
  157. Bottom.TextColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  158. Bottom.TextSize = 14
  159.  
  160. MainFrame.Name = "MainFrame"
  161. MainFrame.Parent = Box
  162. MainFrame.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  163. MainFrame.BorderColor3 = Color3.new(0, 0, 0)
  164. MainFrame.Position = UDim2.new(0, 0, 0, 59)
  165. MainFrame.Size = UDim2.new(0, 318, 0, 141)
  166.  
  167. Badges.Name = "Badges"
  168. Badges.Parent = MainFrame
  169. Badges.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  170. Badges.Position = UDim2.new(0, 42, 0, 54)
  171. Badges.Size = UDim2.new(0, 108, 0, 25)
  172. Badges.Font = Enum.Font.SourceSans
  173. Badges.FontSize = Enum.FontSize.Size14
  174. Badges.Text = "All Badges"
  175. Badges.TextSize = 14
  176.  
  177. TP.Name = "TP"
  178. TP.Parent = MainFrame
  179. TP.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  180. TP.Position = UDim2.new(0, 36, 0, 4)
  181. TP.Size = UDim2.new(0, 124, 0, 34)
  182. TP.Font = Enum.Font.SourceSans
  183. TP.FontSize = Enum.FontSize.Size14
  184. TP.Text = "Event TP"
  185. TP.TextSize = 14
  186.  
  187. Pokedex.Name = "Pokedex"
  188. Pokedex.Parent = MainFrame
  189. Pokedex.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  190. Pokedex.Position = UDim2.new(0, 42, 0, 83)
  191. Pokedex.Size = UDim2.new(0, 108, 0, 25)
  192. Pokedex.Font = Enum.Font.SourceSans
  193. Pokedex.FontSize = Enum.FontSize.Size14
  194. Pokedex.Text = "Pokdex"
  195. Pokedex.TextSize = 14
  196.  
  197. BP.Name = "BP"
  198. BP.Parent = MainFrame
  199. BP.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  200. BP.Position = UDim2.new(0, 162, 0, 54)
  201. BP.Size = UDim2.new(0, 108, 0, 25)
  202. BP.Font = Enum.Font.SourceSans
  203. BP.FontSize = Enum.FontSize.Size14
  204. BP.Text = "300 BP"
  205. BP.TextSize = 14
  206.  
  207. Money.Name = "Money"
  208. Money.Parent = MainFrame
  209. Money.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  210. Money.Position = UDim2.new(0, 162, 0, 84)
  211. Money.Size = UDim2.new(0, 108, 0, 25)
  212. Money.Font = Enum.Font.SourceSans
  213. Money.FontSize = Enum.FontSize.Size14
  214. Money.Text = "Give Money"
  215. Money.TextSize = 14
  216.  
  217. Amount.Name = "Amount"
  218. Amount.Parent = MainFrame
  219. Amount.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  220. Amount.BorderColor3 = Color3.new(0, 0, 0)
  221. Amount.Position = UDim2.new(0, 162, 0, 115)
  222. Amount.Size = UDim2.new(0, 108, 0, 20)
  223. Amount.Font = Enum.Font.SourceSans
  224. Amount.FontSize = Enum.FontSize.Size14
  225. Amount.Text = "Amount"
  226. Amount.TextColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  227. Amount.TextSize = 14
  228.  
  229. Items.Name = "Items"
  230. Items.Parent = MainFrame
  231. Items.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  232. Items.Position = UDim2.new(0, 42, 0, 112)
  233. Items.Size = UDim2.new(0, 108, 0, 25)
  234. Items.Font = Enum.Font.SourceSans
  235. Items.FontSize = Enum.FontSize.Size14
  236. Items.Text = "Give Items"
  237. Items.TextSize = 14
  238.  
  239. Gamepass.Name = "Gamepass"
  240. Gamepass.Parent = MainFrame
  241. Gamepass.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  242. Gamepass.Position = UDim2.new(0, 156, 0, 4)
  243. Gamepass.Size = UDim2.new(0, 124, 0, 34)
  244. Gamepass.Font = Enum.Font.SourceSans
  245. Gamepass.FontSize = Enum.FontSize.Size14
  246. Gamepass.Text = "Gamepasses"
  247. Gamepass.TextSize = 14
  248.  
  249. Teleporting.Name = "Teleporting"
  250. Teleporting.Parent = Box
  251. Teleporting.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  252. Teleporting.BorderColor3 = Color3.new(0, 0, 0)
  253. Teleporting.Position = UDim2.new(0, 320, 0, 24)
  254. Teleporting.Size = UDim2.new(0, 125, 0, 176)
  255. Teleporting.CanvasSize = UDim2.new(0, 0, 2.29999995, 0)
  256.  
  257. AuraLab.Name = "AuraLab"
  258. AuraLab.Parent = Teleporting
  259. AuraLab.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  260. AuraLab.BorderColor3 = Color3.new(0, 0, 0)
  261. AuraLab.BorderSizePixel = 2
  262. AuraLab.Position = UDim2.new(0, 12, 0, 510)
  263. AuraLab.Size = UDim2.new(0, 90, 0, 20)
  264. AuraLab.Font = Enum.Font.SciFi
  265. AuraLab.FontSize = Enum.FontSize.Size14
  266. AuraLab.Text = "Aura Lab"
  267. AuraLab.TextColor3 = Color3.new(1, 1, 1)
  268. AuraLab.TextScaled = true
  269. AuraLab.TextSize = 14
  270. AuraLab.TextWrapped = true
  271.  
  272. Canyon.Name = "Canyon"
  273. Canyon.Parent = Teleporting
  274. Canyon.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  275. Canyon.BorderColor3 = Color3.new(0, 0, 0)
  276. Canyon.BorderSizePixel = 2
  277. Canyon.Position = UDim2.new(0, 12, 0, 450)
  278. Canyon.Size = UDim2.new(0, 90, 0, 20)
  279. Canyon.Font = Enum.Font.SciFi
  280. Canyon.FontSize = Enum.FontSize.Size14
  281. Canyon.Text = "Snow Canyon"
  282. Canyon.TextColor3 = Color3.new(1, 1, 1)
  283. Canyon.TextScaled = true
  284. Canyon.TextSize = 14
  285. Canyon.TextWrapped = true
  286.  
  287. Celadon.Name = "Celadon"
  288. Celadon.Parent = Teleporting
  289. Celadon.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  290. Celadon.BorderColor3 = Color3.new(0, 0, 0)
  291. Celadon.BorderSizePixel = 2
  292. Celadon.Position = UDim2.new(0, 12, 0, 150)
  293. Celadon.Size = UDim2.new(0, 90, 0, 20)
  294. Celadon.Font = Enum.Font.SciFi
  295. Celadon.FontSize = Enum.FontSize.Size14
  296. Celadon.Text = "Celadon City"
  297. Celadon.TextColor3 = Color3.new(1, 1, 1)
  298. Celadon.TextScaled = true
  299. Celadon.TextSize = 14
  300. Celadon.TextWrapped = true
  301.  
  302. Cerulean.Name = "Cerulean"
  303. Cerulean.Parent = Teleporting
  304. Cerulean.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  305. Cerulean.BorderColor3 = Color3.new(0, 0, 0)
  306. Cerulean.BorderSizePixel = 2
  307. Cerulean.Position = UDim2.new(0, 12, 0, 90)
  308. Cerulean.Size = UDim2.new(0, 90, 0, 20)
  309. Cerulean.Font = Enum.Font.SciFi
  310. Cerulean.FontSize = Enum.FontSize.Size14
  311. Cerulean.Text = "Cerulean City"
  312. Cerulean.TextColor3 = Color3.new(1, 1, 1)
  313. Cerulean.TextScaled = true
  314. Cerulean.TextSize = 14
  315. Cerulean.TextWrapped = true
  316.  
  317. Champion.Name = "Champion"
  318. Champion.Parent = Teleporting
  319. Champion.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  320. Champion.BorderColor3 = Color3.new(0, 0, 0)
  321. Champion.BorderSizePixel = 2
  322. Champion.Position = UDim2.new(0, 12, 0, 480)
  323. Champion.Size = UDim2.new(0, 90, 0, 20)
  324. Champion.Font = Enum.Font.SciFi
  325. Champion.FontSize = Enum.FontSize.Size14
  326. Champion.Text = "Pokemon Champion"
  327. Champion.TextColor3 = Color3.new(1, 1, 1)
  328. Champion.TextScaled = true
  329. Champion.TextSize = 14
  330. Champion.TextWrapped = true
  331.  
  332. Cinnabar.Name = "Cinnabar"
  333. Cinnabar.Parent = Teleporting
  334. Cinnabar.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  335. Cinnabar.BorderColor3 = Color3.new(0, 0, 0)
  336. Cinnabar.BorderSizePixel = 2
  337. Cinnabar.Position = UDim2.new(0, 12, 0, 270)
  338. Cinnabar.Size = UDim2.new(0, 90, 0, 20)
  339. Cinnabar.Font = Enum.Font.SciFi
  340. Cinnabar.FontSize = Enum.FontSize.Size14
  341. Cinnabar.Text = "Cinnabar Volcano"
  342. Cinnabar.TextColor3 = Color3.new(1, 1, 1)
  343. Cinnabar.TextScaled = true
  344. Cinnabar.TextSize = 14
  345. Cinnabar.TextWrapped = true
  346.  
  347. Elegant.Name = "Elegant"
  348. Elegant.Parent = Teleporting
  349. Elegant.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  350. Elegant.BorderColor3 = Color3.new(0, 0, 0)
  351. Elegant.BorderSizePixel = 2
  352. Elegant.Position = UDim2.new(0, 12, 0, 330)
  353. Elegant.Size = UDim2.new(0, 90, 0, 20)
  354. Elegant.Font = Enum.Font.SciFi
  355. Elegant.FontSize = Enum.FontSize.Size14
  356. Elegant.Text = "Elegant Valley"
  357. Elegant.TextColor3 = Color3.new(1, 1, 1)
  358. Elegant.TextScaled = true
  359. Elegant.TextSize = 14
  360. Elegant.TextWrapped = true
  361.  
  362. Fuchsia.Name = "Fuchsia"
  363. Fuchsia.Parent = Teleporting
  364. Fuchsia.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  365. Fuchsia.BorderColor3 = Color3.new(0, 0, 0)
  366. Fuchsia.BorderSizePixel = 2
  367. Fuchsia.Position = UDim2.new(0, 12, 0, 210)
  368. Fuchsia.Size = UDim2.new(0, 90, 0, 20)
  369. Fuchsia.Font = Enum.Font.SciFi
  370. Fuchsia.FontSize = Enum.FontSize.Size14
  371. Fuchsia.Text = "Fuchsia City"
  372. Fuchsia.TextColor3 = Color3.new(1, 1, 1)
  373. Fuchsia.TextScaled = true
  374. Fuchsia.TextSize = 14
  375. Fuchsia.TextWrapped = true
  376.  
  377. Indigo.Name = "Indigo"
  378. Indigo.Parent = Teleporting
  379. Indigo.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  380. Indigo.BorderColor3 = Color3.new(0, 0, 0)
  381. Indigo.BorderSizePixel = 2
  382. Indigo.Position = UDim2.new(0, 12, 0, 300)
  383. Indigo.Size = UDim2.new(0, 90, 0, 20)
  384. Indigo.Font = Enum.Font.SciFi
  385. Indigo.FontSize = Enum.FontSize.Size14
  386. Indigo.Text = "Indigo Plateu"
  387. Indigo.TextColor3 = Color3.new(1, 1, 1)
  388. Indigo.TextScaled = true
  389. Indigo.TextSize = 14
  390. Indigo.TextWrapped = true
  391.  
  392. Lavender.Name = "Lavender"
  393. Lavender.Parent = Teleporting
  394. Lavender.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  395. Lavender.BorderColor3 = Color3.new(0, 0, 0)
  396. Lavender.BorderSizePixel = 2
  397. Lavender.Position = UDim2.new(0, 12, 0, 180)
  398. Lavender.Size = UDim2.new(0, 90, 0, 20)
  399. Lavender.Font = Enum.Font.SciFi
  400. Lavender.FontSize = Enum.FontSize.Size14
  401. Lavender.Text = "Lavender Town"
  402. Lavender.TextColor3 = Color3.new(1, 1, 1)
  403. Lavender.TextScaled = true
  404. Lavender.TextSize = 14
  405. Lavender.TextWrapped = true
  406.  
  407. Mausoleum.Name = "Mausoleum"
  408. Mausoleum.Parent = Teleporting
  409. Mausoleum.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  410. Mausoleum.BorderColor3 = Color3.new(0, 0, 0)
  411. Mausoleum.BorderSizePixel = 2
  412. Mausoleum.Position = UDim2.new(0, 12, 0, 390)
  413. Mausoleum.Size = UDim2.new(0, 90, 0, 20)
  414. Mausoleum.Font = Enum.Font.SciFi
  415. Mausoleum.FontSize = Enum.FontSize.Size14
  416. Mausoleum.Text = "Mausoleum of Origin"
  417. Mausoleum.TextColor3 = Color3.new(1, 1, 1)
  418. Mausoleum.TextScaled = true
  419. Mausoleum.TextSize = 14
  420. Mausoleum.TextWrapped = true
  421.  
  422. Mausoleum2.Name = "Mausoleum2"
  423. Mausoleum2.Parent = Teleporting
  424. Mausoleum2.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  425. Mausoleum2.BorderColor3 = Color3.new(0, 0, 0)
  426. Mausoleum2.BorderSizePixel = 2
  427. Mausoleum2.Position = UDim2.new(0, 12, 0, 420)
  428. Mausoleum2.Size = UDim2.new(0, 90, 0, 20)
  429. Mausoleum2.Font = Enum.Font.SciFi
  430. Mausoleum2.FontSize = Enum.FontSize.Size14
  431. Mausoleum2.Text = "Inside Mausoleum"
  432. Mausoleum2.TextColor3 = Color3.new(1, 1, 1)
  433. Mausoleum2.TextScaled = true
  434. Mausoleum2.TextSize = 14
  435. Mausoleum2.TextWrapped = true
  436.  
  437. Moon.Name = "Moon"
  438. Moon.Parent = Teleporting
  439. Moon.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  440. Moon.BorderColor3 = Color3.new(0, 0, 0)
  441. Moon.BorderSizePixel = 2
  442. Moon.Position = UDim2.new(0, 12, 0, 60)
  443. Moon.Size = UDim2.new(0, 90, 0, 20)
  444. Moon.Font = Enum.Font.SciFi
  445. Moon.FontSize = Enum.FontSize.Size14
  446. Moon.Text = "Mount Moon"
  447. Moon.TextColor3 = Color3.new(1, 1, 1)
  448. Moon.TextScaled = true
  449. Moon.TextSize = 14
  450. Moon.TextWrapped = true
  451.  
  452. Mysterious.Name = "Mysterious"
  453. Mysterious.Parent = Teleporting
  454. Mysterious.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  455. Mysterious.BorderColor3 = Color3.new(0, 0, 0)
  456. Mysterious.BorderSizePixel = 2
  457. Mysterious.Position = UDim2.new(0, 12, 0, 360)
  458. Mysterious.Size = UDim2.new(0, 90, 0, 20)
  459. Mysterious.Font = Enum.Font.SciFi
  460. Mysterious.FontSize = Enum.FontSize.Size14
  461. Mysterious.Text = "Mysterious Grotto"
  462. Mysterious.TextColor3 = Color3.new(1, 1, 1)
  463. Mysterious.TextScaled = true
  464. Mysterious.TextSize = 14
  465. Mysterious.TextWrapped = true
  466.  
  467. Pewter.Name = "Pewter"
  468. Pewter.Parent = Teleporting
  469. Pewter.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  470. Pewter.BorderColor3 = Color3.new(0, 0, 0)
  471. Pewter.BorderSizePixel = 2
  472. Pewter.Position = UDim2.new(0, 12, 0, 30)
  473. Pewter.Size = UDim2.new(0, 90, 0, 20)
  474. Pewter.Font = Enum.Font.SciFi
  475. Pewter.FontSize = Enum.FontSize.Size14
  476. Pewter.Text = "Pewter Town"
  477. Pewter.TextColor3 = Color3.new(1, 1, 1)
  478. Pewter.TextScaled = true
  479. Pewter.TextSize = 14
  480. Pewter.TextWrapped = true
  481.  
  482. Saffron.Name = "Saffron"
  483. Saffron.Parent = Teleporting
  484. Saffron.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  485. Saffron.BorderColor3 = Color3.new(0, 0, 0)
  486. Saffron.BorderSizePixel = 2
  487. Saffron.Position = UDim2.new(0, 12, 0, 240)
  488. Saffron.Size = UDim2.new(0, 90, 0, 20)
  489. Saffron.Font = Enum.Font.SciFi
  490. Saffron.FontSize = Enum.FontSize.Size14
  491. Saffron.Text = "Saffron City"
  492. Saffron.TextColor3 = Color3.new(1, 1, 1)
  493. Saffron.TextScaled = true
  494. Saffron.TextSize = 14
  495. Saffron.TextWrapped = true
  496.  
  497. Vermillion.Name = "Vermillion"
  498. Vermillion.Parent = Teleporting
  499. Vermillion.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  500. Vermillion.BorderColor3 = Color3.new(0, 0, 0)
  501. Vermillion.BorderSizePixel = 2
  502. Vermillion.Position = UDim2.new(0, 12, 0, 120)
  503. Vermillion.Size = UDim2.new(0, 90, 0, 20)
  504. Vermillion.Font = Enum.Font.SciFi
  505. Vermillion.FontSize = Enum.FontSize.Size14
  506. Vermillion.Text = "Vermillion City"
  507. Vermillion.TextColor3 = Color3.new(1, 1, 1)
  508. Vermillion.TextScaled = true
  509. Vermillion.TextSize = 14
  510. Vermillion.TextWrapped = true
  511.  
  512. Viridian.Name = "Viridian"
  513. Viridian.Parent = Teleporting
  514. Viridian.BackgroundColor3 = Color3.new(0.231373, 0.231373, 0.231373)
  515. Viridian.BorderColor3 = Color3.new(0, 0, 0)
  516. Viridian.BorderSizePixel = 2
  517. Viridian.Position = UDim2.new(0, 12, 0, 0)
  518. Viridian.Size = UDim2.new(0, 90, 0, 20)
  519. Viridian.Font = Enum.Font.SciFi
  520. Viridian.FontSize = Enum.FontSize.Size14
  521. Viridian.Text = "Viridian City"
  522. Viridian.TextColor3 = Color3.new(1, 1, 1)
  523. Viridian.TextScaled = true
  524. Viridian.TextSize = 14
  525. Viridian.TextWrapped = true
  526.  
  527. BattleFrame.Name = "BattleFrame"
  528. BattleFrame.Parent = Box
  529. BattleFrame.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  530. BattleFrame.BorderColor3 = Color3.new(0, 0, 0)
  531. BattleFrame.Position = UDim2.new(0, 0, 0, 59)
  532. BattleFrame.Size = UDim2.new(0, 318, 0, 141)
  533. BattleFrame.Visible = false
  534.  
  535. Catch.Name = "Catch"
  536. Catch.Parent = BattleFrame
  537. Catch.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  538. Catch.Position = UDim2.new(0, 162, 0, 60)
  539. Catch.Size = UDim2.new(0, 108, 0, 34)
  540. Catch.Font = Enum.Font.SourceSans
  541. Catch.FontSize = Enum.FontSize.Size14
  542. Catch.Text = "High Catch Rate"
  543. Catch.TextSize = 14
  544.  
  545. Heal.Name = "Heal"
  546. Heal.Parent = BattleFrame
  547. Heal.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  548. Heal.Position = UDim2.new(0, 42, 0, 60)
  549. Heal.Size = UDim2.new(0, 108, 0, 34)
  550. Heal.Font = Enum.Font.SourceSans
  551. Heal.FontSize = Enum.FontSize.Size14
  552. Heal.Text = "Heal Pokemon"
  553. Heal.TextSize = 14
  554.  
  555. Insane.Name = "Insane"
  556. Insane.Parent = BattleFrame
  557. Insane.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  558. Insane.Position = UDim2.new(0, 36, 0, 20)
  559. Insane.Size = UDim2.new(0, 247, 0, 34)
  560. Insane.Font = Enum.Font.SourceSans
  561. Insane.FontSize = Enum.FontSize.Size14
  562. Insane.Text = "Insane Pokemon Stats"
  563. Insane.TextSize = 14
  564.  
  565. TextLabel.Parent = BattleFrame
  566. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  567. TextLabel.Position = UDim2.new(0, 59, 0, 0)
  568. TextLabel.Size = UDim2.new(0, 200, 0, 18)
  569. TextLabel.Font = Enum.Font.SourceSans
  570. TextLabel.FontSize = Enum.FontSize.Size14
  571. TextLabel.Text = "[Does not work in PvP Battles]"
  572. TextLabel.TextSize = 14
  573.  
  574. KillOpp.Name = "KillOpp"
  575. KillOpp.Parent = BattleFrame
  576. KillOpp.BackgroundColor3 = Color3.new(0.890196, 0.890196, 0.890196)
  577. KillOpp.Position = UDim2.new(0, 42, 0, 100)
  578. KillOpp.Size = UDim2.new(0, 108, 0, 34)
  579. KillOpp.Font = Enum.Font.SourceSans
  580. KillOpp.FontSize = Enum.FontSize.Size14
  581. KillOpp.Text = "Kill Opp"
  582. KillOpp.TextSize = 14
  583.  
  584. StatsFrame.Name = "StatsFrame"
  585. StatsFrame.Parent = Box
  586. StatsFrame.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  587. StatsFrame.BorderColor3 = Color3.new(0, 0, 0)
  588. StatsFrame.Position = UDim2.new(0, 0, 0, 59)
  589. StatsFrame.Size = UDim2.new(0, 318, 0, 141)
  590. StatsFrame.Visible = false
  591.  
  592. Pokename.Name = "Pokename"
  593. Pokename.Parent = StatsFrame
  594. Pokename.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  595. Pokename.BorderColor3 = Color3.new(0, 0, 0)
  596. Pokename.Position = UDim2.new(0, 18, 0, 5)
  597. Pokename.Size = UDim2.new(0, 270, 0, 30)
  598. Pokename.Font = Enum.Font.Cartoon
  599. Pokename.FontSize = Enum.FontSize.Size24
  600. Pokename.Text = "Pokemon Here"
  601. Pokename.TextColor3 = Color3.new(0.333333, 1, 0.498039)
  602. Pokename.TextSize = 22
  603. Pokename.TextStrokeTransparency = 0
  604. Pokename.TextWrapped = true
  605.  
  606. LevelA.Name = "LevelA"
  607. LevelA.Parent = StatsFrame
  608. LevelA.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  609. LevelA.BorderColor3 = Color3.new(0, 0, 0)
  610. LevelA.Position = UDim2.new(0, 26, 0, 48)
  611. LevelA.Size = UDim2.new(0, 120, 0, 22)
  612. LevelA.Font = Enum.Font.SourceSans
  613. LevelA.FontSize = Enum.FontSize.Size14
  614. LevelA.Text = "Level Amount"
  615. LevelA.TextColor3 = Color3.new(1, 1, 1)
  616. LevelA.TextSize = 14
  617. LevelA.TextStrokeTransparency = 0
  618.  
  619. NatureA.Name = "NatureA"
  620. NatureA.Parent = StatsFrame
  621. NatureA.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  622. NatureA.BorderColor3 = Color3.new(0, 0, 0)
  623. NatureA.Position = UDim2.new(0, 160, 0, 48)
  624. NatureA.Size = UDim2.new(0, 120, 0, 22)
  625. NatureA.Font = Enum.Font.SourceSans
  626. NatureA.FontSize = Enum.FontSize.Size14
  627. NatureA.Text = "Nature"
  628. NatureA.TextColor3 = Color3.new(1, 1, 1)
  629. NatureA.TextSize = 14
  630. NatureA.TextStrokeTransparency = 0
  631.  
  632. Level.Name = "Level"
  633. Level.Parent = StatsFrame
  634. Level.BackgroundColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  635. Level.BorderColor3 = Color3.new(0, 0, 0)
  636. Level.Position = UDim2.new(0, 26, 0, 70)
  637. Level.Size = UDim2.new(0, 120, 0, 22)
  638. Level.Font = Enum.Font.SourceSans
  639. Level.FontSize = Enum.FontSize.Size14
  640. Level.Text = "Add Level"
  641. Level.TextSize = 14
  642.  
  643. Nature.Name = "Nature"
  644. Nature.Parent = StatsFrame
  645. Nature.BackgroundColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  646. Nature.BorderColor3 = Color3.new(0, 0, 0)
  647. Nature.Position = UDim2.new(0, 160, 0, 70)
  648. Nature.Size = UDim2.new(0, 120, 0, 22)
  649. Nature.Font = Enum.Font.SourceSans
  650. Nature.FontSize = Enum.FontSize.Size14
  651. Nature.Text = "Change Nature"
  652. Nature.TextSize = 14
  653.  
  654. IV.Name = "IV"
  655. IV.Parent = StatsFrame
  656. IV.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  657. IV.Position = UDim2.new(0, 18, 0, 100)
  658. IV.Size = UDim2.new(0, 270, 0, 30)
  659. IV.Font = Enum.Font.SourceSans
  660. IV.FontSize = Enum.FontSize.Size14
  661. IV.Text = "Max Out Pokemon's IV's"
  662. IV.TextSize = 14
  663.  
  664. EVA.Name = "EVA"
  665. EVA.Parent = StatsFrame
  666. EVA.BackgroundColor3 = Color3.new(0.27451, 0.27451, 0.27451)
  667. EVA.BorderColor3 = Color3.new(0, 0, 0)
  668. EVA.Position = UDim2.new(0, 45, 0, 145)
  669. EVA.Size = UDim2.new(0, 120, 0, 22)
  670. EVA.Font = Enum.Font.SourceSans
  671. EVA.FontSize = Enum.FontSize.Size18
  672. EVA.Text = "EV Amount"
  673. EVA.TextColor3 = Color3.new(1, 1, 1)
  674. EVA.TextSize = 18
  675. EVA.TextStrokeTransparency = 0
  676.  
  677. Atk.Name = "Atk"
  678. Atk.Parent = StatsFrame
  679. Atk.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  680. Atk.BorderColor3 = Color3.new(0, 0, 0)
  681. Atk.Position = UDim2.new(0, 6, 0, 175)
  682. Atk.Size = UDim2.new(0, 90, 0, 22)
  683. Atk.Font = Enum.Font.SourceSans
  684. Atk.FontSize = Enum.FontSize.Size14
  685. Atk.Text = "Attack"
  686. Atk.TextColor3 = Color3.new(1, 1, 1)
  687. Atk.TextSize = 14
  688.  
  689. SpAtk.Name = "SpAtk"
  690. SpAtk.Parent = StatsFrame
  691. SpAtk.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  692. SpAtk.BorderColor3 = Color3.new(0, 0, 0)
  693. SpAtk.Position = UDim2.new(0, 108, 0, 175)
  694. SpAtk.Size = UDim2.new(0, 90, 0, 22)
  695. SpAtk.Font = Enum.Font.SourceSans
  696. SpAtk.FontSize = Enum.FontSize.Size14
  697. SpAtk.Text = "Sp Attack"
  698. SpAtk.TextColor3 = Color3.new(1, 1, 1)
  699. SpAtk.TextSize = 14
  700.  
  701. Spd.Name = "Spd"
  702. Spd.Parent = StatsFrame
  703. Spd.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  704. Spd.BorderColor3 = Color3.new(0, 0, 0)
  705. Spd.Position = UDim2.new(0, 209, 0, 175)
  706. Spd.Size = UDim2.new(0, 90, 0, 22)
  707. Spd.Font = Enum.Font.SourceSans
  708. Spd.FontSize = Enum.FontSize.Size14
  709. Spd.Text = "Speed"
  710. Spd.TextColor3 = Color3.new(1, 1, 1)
  711. Spd.TextSize = 14
  712.  
  713. Def.Name = "Def"
  714. Def.Parent = StatsFrame
  715. Def.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  716. Def.BorderColor3 = Color3.new(0, 0, 0)
  717. Def.Position = UDim2.new(0, 6, 0, 200)
  718. Def.Size = UDim2.new(0, 90, 0, 22)
  719. Def.Font = Enum.Font.SourceSans
  720. Def.FontSize = Enum.FontSize.Size14
  721. Def.Text = "Defense"
  722. Def.TextColor3 = Color3.new(1, 1, 1)
  723. Def.TextSize = 14
  724.  
  725. SpDef.Name = "SpDef"
  726. SpDef.Parent = StatsFrame
  727. SpDef.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  728. SpDef.BorderColor3 = Color3.new(0, 0, 0)
  729. SpDef.Position = UDim2.new(0, 108, 0, 200)
  730. SpDef.Size = UDim2.new(0, 90, 0, 22)
  731. SpDef.Font = Enum.Font.SourceSans
  732. SpDef.FontSize = Enum.FontSize.Size14
  733. SpDef.Text = "Sp Defense"
  734. SpDef.TextColor3 = Color3.new(1, 1, 1)
  735. SpDef.TextSize = 14
  736.  
  737. Health.Name = "Health"
  738. Health.Parent = StatsFrame
  739. Health.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  740. Health.BorderColor3 = Color3.new(0, 0, 0)
  741. Health.Position = UDim2.new(0, 209, 0, 200)
  742. Health.Size = UDim2.new(0, 90, 0, 22)
  743. Health.Font = Enum.Font.SourceSans
  744. Health.FontSize = Enum.FontSize.Size14
  745. Health.Text = "Health"
  746. Health.TextColor3 = Color3.new(1, 1, 1)
  747. Health.TextSize = 14
  748.  
  749. Reset.Name = "Reset"
  750. Reset.Parent = StatsFrame
  751. Reset.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  752. Reset.BorderColor3 = Color3.new(0, 0, 0)
  753. Reset.Position = UDim2.new(0, 175, 0, 145)
  754. Reset.Size = UDim2.new(0, 90, 0, 22)
  755. Reset.Font = Enum.Font.SourceSans
  756. Reset.FontSize = Enum.FontSize.Size14
  757. Reset.Text = "Reset Ev's"
  758. Reset.TextColor3 = Color3.new(1, 1, 1)
  759. Reset.TextSize = 14
  760.  
  761. SpawnFrame.Name = "SpawnFrame"
  762. SpawnFrame.Parent = Box
  763. SpawnFrame.BackgroundColor3 = Color3.new(0.356863, 0.356863, 0.356863)
  764. SpawnFrame.BorderColor3 = Color3.new(0, 0, 0)
  765. SpawnFrame.Position = UDim2.new(0, 0, 0, 59)
  766. SpawnFrame.Size = UDim2.new(0, 318, 0, 141)
  767. SpawnFrame.Visible = false
  768.  
  769. TextLabel_2.Parent = SpawnFrame
  770. TextLabel_2.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  771. TextLabel_2.Position = UDim2.new(0, 59, 0, 20)
  772. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  773. TextLabel_2.Font = Enum.Font.SourceSans
  774. TextLabel_2.FontSize = Enum.FontSize.Size24
  775. TextLabel_2.Text = "Currently Not available"
  776. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  777. TextLabel_2.TextSize = 20
  778.  
  779. Close.Name = "Close"
  780. Close.Parent = Box
  781. Close.BackgroundColor3 = Color3.new(0.721569, 0.721569, 0.721569)
  782. Close.BorderColor3 = Color3.new(0, 0, 0)
  783. Close.Position = UDim2.new(0, 430, 0, 0)
  784. Close.Size = UDim2.new(0, 15, 0, 23)
  785. Close.Font = Enum.Font.SourceSans
  786. Close.FontSize = Enum.FontSize.Size14
  787. Close.Text = "X"
  788. Close.TextSize = 14
  789.  
  790. OpenFrame.Name = "OpenFrame"
  791. OpenFrame.Parent = Pokemon
  792. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  793. OpenFrame.Position = UDim2.new(0, 630, 0, -33)
  794. OpenFrame.Size = UDim2.new(0, 100, 0, 18)
  795. OpenFrame.Visible = false
  796.  
  797. Open.Name = "Open"
  798. Open.Parent = OpenFrame
  799. Open.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
  800. Open.BorderColor3 = Color3.new(0, 0, 0)
  801. Open.Size = UDim2.new(0, 100, 0, 18)
  802. Open.Font = Enum.Font.SourceSans
  803. Open.FontSize = Enum.FontSize.Size14
  804. Open.Text = "Open"
  805. Open.TextColor3 = Color3.new(1, 1, 1)
  806. Open.TextSize = 14
  807.  
  808.  
  809. Close.MouseButton1Down:connect(function()
  810. game.CoreGui.Pokemon.Box.Visible = false
  811. game.CoreGui.Pokemon.OpenFrame.Visible = true
  812. end)
  813.  
  814. Open.MouseButton1Down:connect(function()
  815. game.CoreGui.Pokemon.Box.Visible = true
  816. game.CoreGui.Pokemon.OpenFrame.Visible = false
  817. end)
  818.  
  819. Main.MouseButton1Down:connect(function()
  820. MainFrame.Visible = true
  821. BattleFrame.Visible = false
  822. StatsFrame.Visible = false
  823. SpawnFrame.Visible = false
  824. Main.Size = UDim2.new(0, 74, 0, 26)
  825. Battle.Size = UDim2.new(0, 74, 0, 25)
  826. Stats.Size = UDim2.new(0, 74, 0, 25)
  827. Spawning.Size = UDim2.new(0, 74, 0, 25)
  828. end)
  829.  
  830. Battle.MouseButton1Down:connect(function()
  831. MainFrame.Visible = false
  832. BattleFrame.Visible = true
  833. StatsFrame.Visible = false
  834. SpawnFrame.Visible = false
  835. Main.Size = UDim2.new(0, 74, 0, 25)
  836. Battle.Size = UDim2.new(0, 74, 0, 26)
  837. Stats.Size = UDim2.new(0, 74, 0, 25)
  838. Spawning.Size = UDim2.new(0, 74, 0, 25)
  839. end)
  840.  
  841. Stats.MouseButton1Down:connect(function()
  842. MainFrame.Visible = false
  843. BattleFrame.Visible = false
  844. StatsFrame.Visible = true
  845. SpawnFrame.Visible = false
  846. Main.Size = UDim2.new(0, 74, 0, 25)
  847. Battle.Size = UDim2.new(0, 74, 0, 25)
  848. Stats.Size = UDim2.new(0, 74, 0, 26)
  849. Spawning.Size = UDim2.new(0, 74, 0, 25)
  850. end)
  851.  
  852. Spawning.MouseButton1Down:connect(function()
  853. MainFrame.Visible = false
  854. BattleFrame.Visible = false
  855. StatsFrame.Visible = false
  856. SpawnFrame.Visible = true
  857. Main.Size = UDim2.new(0, 74, 0, 25)
  858. Battle.Size = UDim2.new(0, 74, 0, 25)
  859. Stats.Size = UDim2.new(0, 74, 0, 25)
  860. Spawning.Size = UDim2.new(0, 74, 0, 26)
  861. end)
  862. ----------------------------------------------------------------Main Frame
  863. TP.MouseButton1Down:connect(function()
  864. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Horseman2.Head.CFrame
  865. end)
  866.  
  867. Gamepass.MouseButton1Down:connect(function()
  868. game.Players.LocalPlayer.MewVIP.Value = 1
  869. game.Players.LocalPlayer.OtherLegendary.Value = 1
  870. game.Players.LocalPlayer.EeveeVIP.Value = 1
  871. game.Players.LocalPlayer.RunVIP.Value = 1
  872. game.Players.LocalPlayer.JohtoVIP.Value = 1
  873. game.Players.LocalPlayer.KantoStarterVIP.Value = 1
  874. game.Players.LocalPlayer.LegendaryVIP.Value = 1
  875. game.Players.LocalPlayer.ShinyVIP.Value = 1
  876. game.Players.LocalPlayer.MoreneyVIP.Value = 1
  877. Bottom.Text = "Given all Gamepasses"
  878. wait(4)
  879. Bottom.Text = ""
  880. end)
  881.  
  882. Items.MouseButton1Down:connect(function()
  883. Value = Amount.Text
  884. b=game.Players.LocalPlayer.Bag
  885. r=game.ReplicatedStorage.REvents
  886. Items = {
  887. Recover = {"Antidote","Awakening","Burn Heal","Full Restore","Hyper Potion","Ice Heal","Max Elixir","Potion","Paralyze Heal","Revive"},
  888. Pokeball = {"Great Ball","Nest Ball","Net Ball","Pokeball","Premier Ball","Repeat Ball","Ultra Ball","Beast Ball"},
  889. Evolution = {"Rare Candy","Common Candy","Dragon Scale","Fire Stone","Friendship Ribbon","Leaf Stone","Link Cable Stone","Metal Coat","Moon Stone","Sinnoh Stone","Thunder Stone","Water Stone","Shinifier"},
  890. HeldItems = {"Absolite","Aerodactylite","Aggronite","Alakazamite","Altarianite","Ampharosite","Audinite","Banettite","Banettite","Beedrillite","Blastoisinite","Blazikenite","Cameruptite","Charizardite X","Charizardite Y","Diancite","Galladite","Gardevoirite","Gengarite","Glalitite","Gyaradosite","Heracronite","Houndoomite","Latiasite","Latiosite","Lopunnite","Lucarionite","Manectite","Mawilite","Medichamite","Metagrossite","Garchompite","Pidgeotite","Pinsirite","Sablenite","Salemencite","Sceptilite","Scizorite","Sharpedonite","Slowbronite","Steelixite","Swampestite","Venusaurite","Tyranitarite","Eviolite","Expert Belt","Flame Orb","Focus Sash","Life Orb","Novice Belt","Power Anklet","Power Belt","Power Bracer","Power Band","Power Lens","Power Weight","Toxic Orb","Wide Lens","Wise Glasses","Leftovers"},
  891. Competitive = {"Calcium","Carbos","HP Up","Iron","Mini Stat Reset","Nature Stone","PokeImprove","Protein","Stat Reset","Zinc"}
  892. }
  893. Bottom.Text = "Given " ..Amount.Text.. " of each item"
  894. wait(3)
  895. Bottom.Text = ""
  896. for n,t in next,Items do
  897. for _,i in next,t do
  898. if b[n]:FindFirstChild(i)then
  899. r.Internal.funcItem:InvokeServer(b[n][i],Value)
  900. else r.Pokemon.ozAxZ:InvokeServer(i,b[n],Value)
  901.  
  902. end end end
  903. end)
  904.  
  905. BP.MouseButton1Down:connect(function()
  906. game.ReplicatedStorage.REvents.Pokemon.GreenPill:InvokeServer(tonumber(Amount.Text))
  907. Bottom.Text = "Given " ..Amount.Text.. " Battle Points"
  908. wait(3)
  909. Bottom.Text = ""
  910. end)
  911.  
  912. Money.MouseButton1Down:connect(function()
  913. game.ReplicatedStorage.REvents.Internal.funcMoney:InvokeServer(game.Players.LocalPlayer.Money, game.CoreGui.
  914. Pokemon.Box.MainFrame.Amount.Text)
  915. Bottom.Text = "Given " ..Amount.Text.. " Dollars"
  916. wait(3)
  917. Bottom.Text = ""
  918. end)
  919.  
  920. Badges.MouseButton1Down:connect(function()
  921. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("1")
  922. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("2")
  923. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("EV")
  924. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("3")
  925. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("4")
  926. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("5")
  927. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("6")
  928. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("7")
  929. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("Mysterious Grotto")
  930. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("8")
  931. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("Indigo")
  932. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("Champ")
  933. game.ReplicatedStorage.REvents.Internal.AwardBadge:FireServer("Mausoleum of Origins")
  934. Bottom.Text = "Given all Badges"
  935. wait(3)
  936. Bottom.Text = ""
  937. end)
  938.  
  939. Pokedex.MouseButton1Down:connect(function()
  940. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bulbasaur",001)
  941. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ivysaur",002)
  942. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Venusaur",003)
  943. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Charmander",004)
  944. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Charmeleon",005)
  945. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Charizard",006)
  946. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Squirtle",007)
  947. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wartortle",008)
  948. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Blastoise",009)
  949. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Caterpie",010)
  950. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Metapod",011)
  951. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Butterfree",012)
  952. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Weedle",013)
  953. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kakuna",014)
  954. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Beedrill",015)
  955. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pidgey",016)
  956. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pidgeotto",017)
  957. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pidgeot",018)
  958. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rattata",019)
  959. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Raticate",020)
  960. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Spearow",021)
  961. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fearow",022)
  962. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ekans",023)
  963. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Arbok",024)
  964. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pikachu",025)
  965. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Raichu",026)
  966. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sandshrew",027)
  967. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sandslash",028)
  968. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("NidoranF",029)
  969. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nidorina",030)
  970. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nidoqueen",031)
  971. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("NidoranM",032)
  972. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nidorino",033)
  973. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nidoking",034)
  974. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Clefairy",035)
  975. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Clefable",036)
  976. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vulpix",037)
  977. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ninetales",038)
  978. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jigglypuff",039)
  979. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wigglytuff",040)
  980. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zubat",041)
  981. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Golbat",042)
  982. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Oddish",043)
  983. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gloom",044)
  984. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vileplume",045)
  985. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Paras",046)
  986. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Parasect",047)
  987. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Venonat",048)
  988. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Venomoth",049)
  989. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Diglett",050)
  990. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dugtrio",051)
  991. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Meowth",052)
  992. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Persian",053)
  993. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Psyduck",054)
  994. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Golduck",055)
  995. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mankey",056)
  996. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Primeape",057)
  997. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Growlithe",058)
  998. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Arcanine",059)
  999. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Poliwag",060)
  1000. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Poliwhirl",061)
  1001. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Poliwrath",062)
  1002. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Abra",063)
  1003. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kadabra",064)
  1004. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Alakazam",065)
  1005. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Machop",066)
  1006. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Machoke",067)
  1007. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Machamp",068)
  1008. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bellsprout",069)
  1009. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Weepinbell",070)
  1010. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Victreebel",071)
  1011. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tentacool",072)
  1012. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tentacruel",073)
  1013. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Geodude",074)
  1014. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Graveler",075)
  1015. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Golem",076)
  1016. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ponyta",077)
  1017. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rapidash",078)
  1018. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Slowpoke",079)
  1019. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Slowbro",080)
  1020. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magnemite",081)
  1021. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magneton",082)
  1022. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Farfetch'd",083)
  1023. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Doduo",084)
  1024. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dodrio",085)
  1025. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Seel",086)
  1026. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dewgong",087)
  1027. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Grimer",088)
  1028. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Muk",089)
  1029. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shellder",090)
  1030. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cloyster",091)
  1031. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gastly",092)
  1032. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Haunter",093)
  1033. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gengar",094)
  1034. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Onix",095)
  1035. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drowzee",096)
  1036. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hypno",097)
  1037. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Krabby",098)
  1038. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kingler",099)
  1039. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Voltorb",100)
  1040. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Electrode",101)
  1041. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Exeggcute",102)
  1042. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Exeggutor",103)
  1043. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cubone",104)
  1044. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Marowak",105)
  1045. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hitmonlee",106)
  1046. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hitmonchan",107)
  1047. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lickitung",108)
  1048. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Koffing",109)
  1049. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Weezing",110)
  1050. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rhyhorn",111)
  1051. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rhydon",112)
  1052. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chansey",113)
  1053. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tangela",114)
  1054. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kangaskhan",115)
  1055. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Horsea",116)
  1056. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Seadra",117)
  1057. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Goldeen",118)
  1058. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Seaking",119)
  1059. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Staryu",120)
  1060. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Starmie",121)
  1061. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mr.Mime",122)
  1062. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Scyther",123)
  1063. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jynx",124)
  1064. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Electabuzz",125)
  1065. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magmar",126)
  1066. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pinsir",127)
  1067. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tauros",128)
  1068. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magikarp",129)
  1069. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gyarados",130)
  1070. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lapras",131)
  1071. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ditto",132)
  1072. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Eevee",133)
  1073. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vaporeon",134)
  1074. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jolteon",135)
  1075. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Flareon",136)
  1076. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Porygon",137)
  1077. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Omanyte",138)
  1078. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Omastar",139)
  1079. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kabuto",140)
  1080. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kabutops",141)
  1081. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Aerodactyl",142)
  1082. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Snorlax",143)
  1083. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Articuno",144)
  1084. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zapdos",145)
  1085. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Moltres",146)
  1086. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dratini",147)
  1087. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dragonair",148)
  1088. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dragonite",149)
  1089. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mewtwo",150)
  1090. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mew",151)
  1091. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chikorita",152)
  1092. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bayleaf",153)
  1093. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Meganium",154)
  1094. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cyndaquil",155)
  1095. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Quilava",156)
  1096. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Typhlosion",157)
  1097. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Totodile",158)
  1098. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Croconaw",159)
  1099. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Feraligatr",160)
  1100. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Treecko",161)
  1101. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Grovyle",162)
  1102. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sceptile",163)
  1103. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Torchic",164)
  1104. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Combusken",165)
  1105. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Blaziken",166)
  1106. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mudkip",167)
  1107. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Marshtomp",168)
  1108. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swampert",169)
  1109. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bagon",170)
  1110. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shelgon",171)
  1111. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Salamence",172)
  1112. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Beldum",173)
  1113. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Metang",174)
  1114. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Metagross",175)
  1115. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Raikou",176)
  1116. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Entei",177)
  1117. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Suicune",178)
  1118. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Steelix",179)
  1119. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Scizor",180)
  1120. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Larvitar",181)
  1121. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pupitar",182)
  1122. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tyranitar",183)
  1123. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Trapinch",184)
  1124. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vibrava",185)
  1125. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Flygon",186)
  1126. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Crobat",187)
  1127. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Blissey",188)
  1128. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skarmory",189)
  1129. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Espeon",190)
  1130. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Umbreon",191)
  1131. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Aron",192)
  1132. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lairon",193)
  1133. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Aggron",194)
  1134. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kingdra",195)
  1135. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lugia",196)
  1136. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Delibird",197)
  1137. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ho-Oh",198)
  1138. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Latias",199)
  1139. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Latios",200)
  1140. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Riolu",201)
  1141. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lucario",202)
  1142. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magnezone",203)
  1143. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lickilicky",204)
  1144. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rhyperior",205)
  1145. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tangrowth",206)
  1146. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Electrivire",207)
  1147. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magmortar",208)
  1148. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Leafeon",209)
  1149. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Glaceon",210)
  1150. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Seedot",211)
  1151. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nuzleaf",212)
  1152. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shiftry",213)
  1153. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tropius",214)
  1154. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sneasel",215)
  1155. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Weavile",216)
  1156. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Togepi",217)
  1157. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Togetic",218)
  1158. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Togekiss",219)
  1159. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Misdreavus",220)
  1160. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mismagius",221)
  1161. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skorupi",222)
  1162. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drapion",223)
  1163. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rayquaza",224)
  1164. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Absol",225)
  1165. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Heracross",226)
  1166. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Yanma",227)
  1167. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tanmega",228)
  1168. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Murkrow",229)
  1169. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Honchkrow",230)
  1170. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ralts",231)
  1171. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kirlia",232)
  1172. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gardevoir",233)
  1173. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gallade",234)
  1174. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swinub",235)
  1175. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Piloswine",236)
  1176. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mamoswine",237)
  1177. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Celebi",238)
  1178. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Darkrai",239)
  1179. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jirachi",240)
  1180. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gligar",241)
  1181. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gliscor",242)
  1182. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Turtwig",243)
  1183. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Grotle",244)
  1184. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Torterra",245)
  1185. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chimchar",246)
  1186. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Monferno",247)
  1187. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Infernape",248)
  1188. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Piplup",249)
  1189. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Prinplup",250)
  1190. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Empoleon",251)
  1191. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shroomish",252)
  1192. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Breloom",253)
  1193. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shinx",254)
  1194. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Luxio",255)
  1195. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Luxray",256)
  1196. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Manaphy",257)
  1197. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Buneary",258)
  1198. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lopunny",259)
  1199. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cresselia",260)
  1200. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Groudon",261)
  1201. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kyogre",262)
  1202. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Duskull",263)
  1203. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dusclops",264)
  1204. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dusknoir",265)
  1205. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Slakoth",266)
  1206. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vigoroth",267)
  1207. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Slaking",268)
  1208. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Starly",269)
  1209. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Staravia",270)
  1210. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Staraptor",271)
  1211. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Spheal",272)
  1212. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sealeo",273)
  1213. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Walrein",274)
  1214. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gible",275)
  1215. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gabite",276)
  1216. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Garchomp",277)
  1217. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Spiritomb",278)
  1218. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Frillish",279)
  1219. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jellicent",280)
  1220. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Palkia",281)
  1221. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dialga",282)
  1222. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Giratina-O",283)
  1223. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kyurem",284)
  1224. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Keldeo",285)
  1225. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Snorunt",287)
  1226. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Glalie",288)
  1227. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Froslass",289)
  1228. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chinchou",290)
  1229. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lanturn",291)
  1230. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Feebas",292)
  1231. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Milotic",293)
  1232. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lotad",294)
  1233. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lombre",295)
  1234. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ludicolo",296)
  1235. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Buizel",297)
  1236. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Floatzel",298)
  1237. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zangoose",299)
  1238. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Seviper",300)
  1239. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bronzor",301)
  1240. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bronzong",302)
  1241. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Numel",303)
  1242. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Camerupt",304)
  1243. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Budew",305)
  1244. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Roselia",306)
  1245. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Roserade",307)
  1246. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cranidos",308)
  1247. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rampardos",309)
  1248. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Whismur",310)
  1249. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Loudred",311)
  1250. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Explout",312)
  1251. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swablu",313)
  1252. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Altaria",314)
  1253. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drifloon",315)
  1254. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drifblim",316)
  1255. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shuppet",317)
  1256. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Banette",318)
  1257. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lunatone",319)
  1258. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Solrock",320)
  1259. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Regirock",321)
  1260. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Regice",322)
  1261. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Registeel",323)
  1262. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Regigigas",324)
  1263. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Heatran",325)
  1264. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Victini",326)
  1265. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Axew",327)
  1266. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fraxure",328)
  1267. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Haxorus",329)
  1268. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Durant",330)
  1269. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hoppip",331)
  1270. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skiploom",332)
  1271. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Jumpluff",333)
  1272. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Taillow",334)
  1273. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swellow",335)
  1274. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wooper",336)
  1275. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Quagsire",337)
  1276. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Larvesta",338)
  1277. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Golett",339)
  1278. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Golurk",340)
  1279. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Aipom",341)
  1280. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ambiopom",342)
  1281. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Deino",343)
  1282. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zweilous",344)
  1283. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hydreigon",345)
  1284. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tynamo",346)
  1285. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Eelektrik",347)
  1286. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Eelektross",348)
  1287. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cobalion",349)
  1288. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Terrakion",350)
  1289. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Virizion",351)
  1290. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mareep",352)
  1291. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Flaaffy",353)
  1292. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ampharos",354)
  1293. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Scraggy",355)
  1294. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Scrafty",356)
  1295. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Caranha",357)
  1296. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sharpedo",358)
  1297. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wailmer",359)
  1298. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wailord",360)
  1299. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sableye",361)
  1300. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mawile",362)
  1301. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nosepass",363)
  1302. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Probopass",364)
  1303. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Croagunk",365)
  1304. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Toxicroak",366)
  1305. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Snivy",367)
  1306. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Servine",368)
  1307. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Serperior",369)
  1308. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tegip",370)
  1309. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pignite",371)
  1310. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Emboar",372)
  1311. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Oshawott",373)
  1312. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dewott",374)
  1313. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Samurott",375)
  1314. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sandile",376)
  1315. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Krokorok",377)
  1316. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Krookodile",378)
  1317. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shaymin-Sky",379)
  1318. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rotom",380)
  1319. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hoothoot",381)
  1320. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Noctowl",382)
  1321. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pichu",383)
  1322. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Remoraid",384)
  1323. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Octillery",385)
  1324. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mantine",386)
  1325. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Wingull",387)
  1326. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pelipper",388)
  1327. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Relicanth",389)
  1328. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Anorith",390)
  1329. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Armaldo",391)
  1330. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Baltoy",392)
  1331. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Volcarona",393)
  1332. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Claydol",394)
  1333. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Spoink",395)
  1334. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Grumpig",396)
  1335. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Electrike",397)
  1336. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Manectric",398)
  1337. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Houndour",399)
  1338. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Houndoom",400)
  1339. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Torkoal",401)
  1340. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Deoxys",402)
  1341. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pachirisu",403)
  1342. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Azelf",404)
  1343. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mesprit",405)
  1344. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Uxie",406)
  1345. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Genesect",407)
  1346. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tornadus",408)
  1347. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Porygon2",409)
  1348. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Porygon-Z",410)
  1349. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Druddigon",411)
  1350. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shuckle",412)
  1351. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Thundurus",413)
  1352. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cleffa",414)
  1353. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Igglybuff",415)
  1354. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Natu",416)
  1355. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Xatu",417)
  1356. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Marill",418)
  1357. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Azumarill",419)
  1358. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Phanpy",420)
  1359. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Donphan",421)
  1360. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tyrogue",422)
  1361. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hitmontop",423)
  1362. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Smoochum",424)
  1363. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Elekid",425)
  1364. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Magby",426)
  1365. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Miltank",427)
  1366. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Meditite",428)
  1367. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Medicham",429)
  1368. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shieldon",430)
  1369. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bastiodon",431)
  1370. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lillipup",432)
  1371. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Herdier",433)
  1372. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Stoutland",434)
  1373. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pawniard",435)
  1374. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bisharp",436)
  1375. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Woobat",437)
  1376. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swoobat",438)
  1377. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drilbur",439)
  1378. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Exadrill",440)
  1379. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Timburr",441)
  1380. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gurdurr",442)
  1381. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Conkeldurr",443)
  1382. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dwebble",444)
  1383. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Crustle",445)
  1384. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Solosis",446)
  1385. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Duosion",447)
  1386. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Reuniclus",448)
  1387. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Karrablast",449)
  1388. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Escavalier",450)
  1389. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Klink",451)
  1390. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Klang",452)
  1391. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Klinklang",453)
  1392. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Elgyem",454)
  1393. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Beheeyem",455)
  1394. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Litwick",456)
  1395. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lampent",457)
  1396. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chandelure",458)
  1397. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Shelmet",459)
  1398. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Accelgor",460)
  1399. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Stunfisk",461)
  1400. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Roggenrola",462)
  1401. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Boldore",463)
  1402. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gigalith",464)
  1403. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Reshiram",465)
  1404. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zekrom",466)
  1405. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dunsparce",467)
  1406. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Meloetta",468)
  1407. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Stantler",469)
  1408. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Audino",470)
  1409. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sigilyph",471)
  1410. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chatot",472)
  1411. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Darumaka",473)
  1412. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Darmanitan",474)
  1413. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Poochyena",475)
  1414. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mightyena",476)
  1415. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sylveon",477)
  1416. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Slowking",478)
  1417. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bunnelby",479)
  1418. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Diggersby",480)
  1419. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Munchlax",481)
  1420. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chespin",482)
  1421. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Quilladin",483)
  1422. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Chesnaught",484)
  1423. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fennekin",485)
  1424. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Braixen",486)
  1425. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Delphox",487)
  1426. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Froakie",488)
  1427. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Frogadier",489)
  1428. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Greninja",490)
  1429. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pancham",491)
  1430. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pangoro",492)
  1431. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skrelp",493)
  1432. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dragalge",494)
  1433. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fletchling",495)
  1434. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fletchinder",496)
  1435. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Talonflame",497)
  1436. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Goomy",498)
  1437. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sliggoo",499)
  1438. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Goodra",500)
  1439. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hawlucha",501)
  1440. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Amaura",502)
  1441. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Aurorus",503)
  1442. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tyrunt",504)
  1443. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Tyrantrum",505)
  1444. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Clauncher",506)
  1445. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Clawitzer",507)
  1446. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Fomantis",508)
  1447. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Lurantis",509)
  1448. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Helioptile",510)
  1449. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Heliolisk",511)
  1450. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Diancie",512)
  1451. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Klefki",513)
  1452. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Noibat",514)
  1453. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Noivern",515)
  1454. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Phantump",516)
  1455. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Trevenant",517)
  1456. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Rowlet",518)
  1457. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dartrix",519)
  1458. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Decidueye",520)
  1459. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Litten",521)
  1460. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Torracat",522)
  1461. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Incineroar",523)
  1462. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Popplio",524)
  1463. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Brionne",525)
  1464. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Primarina",526)
  1465. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dedenne",527)
  1466. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Grubbin",528)
  1467. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Charjabug",529)
  1468. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vikavolt",530)
  1469. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Yungoos",531)
  1470. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gumshoos",532)
  1471. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Drampa",533)
  1472. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cutiefly",534)
  1473. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ribombee",535)
  1474. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mudsbray",536)
  1475. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Mudsdale",537)
  1476. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pikipek",538)
  1477. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Trumbeak",539)
  1478. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Toucannon",540)
  1479. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skiddo",541)
  1480. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Gogoat",542)
  1481. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Dhelmise",543)
  1482. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Patrat",544)
  1483. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Watchog",545)
  1484. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Combee",546)
  1485. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vespiquen",547)
  1486. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Venipede",548)
  1487. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Whirlipede",549)
  1488. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Scolipede",550)
  1489. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sewaddle",551)
  1490. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Swadloon",552)
  1491. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Leavanny",553)
  1492. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Salandit",554)
  1493. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Salazzle",555)
  1494. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Blitzle",556)
  1495. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zebstrika",557)
  1496. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Joltik",558)
  1497. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Galvantula",559)
  1498. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Kartana",560)
  1499. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cacnea",561)
  1500. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Cacturne",562)
  1501. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Purrloin",563)
  1502. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Liepard",564)
  1503. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pansage",565)
  1504. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Simisage",566)
  1505. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pansear",567)
  1506. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Simisear",568)
  1507. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Panpour",569)
  1508. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Simipour",570)
  1509. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Makuhita",571)
  1510. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Hariyama",572)
  1511. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vanillite",573)
  1512. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vanillish",574)
  1513. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Vanilluxe",575)
  1514. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Phione",576)
  1515. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Zigzagoon",577)
  1516. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Linoone",578)
  1517. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Crabrawler",579)
  1518. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Crabominable",580)
  1519. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Stunky",581)
  1520. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Skuntank",582)
  1521. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bidoof",583)
  1522. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Bibarel",584)
  1523. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Spinda",585)
  1524. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Snubbull",586)
  1525. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Granbull",587)
  1526. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Teddiursa",588)
  1527. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Ursaring",589)
  1528. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Landorus",590)
  1529. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Sentret",591)
  1530. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Furret",592)
  1531. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Celesteela",593)
  1532. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Buzzwole",594)
  1533. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Nihilego",595)
  1534. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Xurkitree",596)
  1535. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Guzzlord",597)
  1536. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Pheromosa",598)
  1537. game.ReplicatedStorage.REvents.Pokemon.createPokedex:FireServer("Necrozma",599)
  1538. Bottom.Text = "Completed Pokedex"
  1539. wait(3)
  1540. Bottom.Text = ""
  1541. end)
  1542. -----------------------------------------------------------Teleports
  1543. local WayPoints =
  1544. {
  1545. ["Celadon"] = Vector3.new(-1803.29102, 1.97374797, 360.160004),
  1546. ["Cerulean"] = Vector3.new(-1271.00305, 41.4428673, 1378.32996),
  1547. ["Cinnabar"] = Vector3.new(-5036.60596, 291.424561, 2358.16992),
  1548. ["Elegant"] = Vector3.new(-9139.74023, 85.2877731, 806.039978),
  1549. ["Fuchsia"] = Vector3.new(-3979.30908, -17.2866173, -272.419006),
  1550. ["Indigo"] = Vector3.new(9800.5, 196.700089, 395),
  1551. ["Mausoleum"] = Vector3.new(-618.44397, 20.022295, -4374.73486),
  1552. ["Mysterious"] = Vector3.new(-2409.74097, 165.587921, 4357.479),
  1553. ["Pewter"] = Vector3.new(-970.586975, 13.4916401, 711.872009),
  1554. ["Saffron"] = Vector3.new(-4447.65186, -13.7074337, 983.737976),
  1555. ["Viridian"] = Vector3.new(-212.769516, 12.910078, 565.719727),
  1556. ["Vermillion"] = Vector3.new(-2672.93701, 28.504425, 780.85199),
  1557. ["Mausoleum2"] = Vector3.new(288.7748993, 194.981171, -4399.16113),
  1558. ["Canyon"] = Vector3.new(10038.73096, 302.371979, 378.541351),
  1559. ["Champion"] = Vector3.new(-1226.794775, -398.7721313, 628.7374695),
  1560. ["Lavender"] = Vector3.new(-2499.31323, 27.5424709, 1534.35046),
  1561. ["Moon"] = Vector3.new(-808.956299, 40.3187408, 1534.72766),
  1562. ["AuraLab"] = Vector3.new(-9439.97559, 66.1556396, 906.498291)
  1563. }
  1564.  
  1565. Celadon.MouseButton1Down:connect(function()
  1566. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Celadon"])
  1567. end)
  1568.  
  1569. Cerulean.MouseButton1Down:connect(function()
  1570. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Cerulean"])
  1571. end)
  1572.  
  1573. Cinnabar.MouseButton1Down:connect(function()
  1574. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Cinnabar"])
  1575. end)
  1576.  
  1577. Elegant.MouseButton1Down:connect(function()
  1578. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Elegant"])
  1579. end)
  1580.  
  1581. Fuchsia.MouseButton1Down:connect(function()
  1582. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Fuchsia"])
  1583. end)
  1584.  
  1585. Indigo.MouseButton1Down:connect(function()
  1586. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Indigo"])
  1587. end)
  1588.  
  1589. Mausoleum.MouseButton1Down:connect(function()
  1590. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Mausoleum"])
  1591. end)
  1592.  
  1593. Mysterious.MouseButton1Down:connect(function()
  1594. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Mysterious"])
  1595. end)
  1596.  
  1597. Pewter.MouseButton1Down:connect(function()
  1598. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Pewter"])
  1599. end)
  1600.  
  1601. Saffron.MouseButton1Down:connect(function()
  1602. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Saffron"])
  1603. end)
  1604.  
  1605. Viridian.MouseButton1Down:connect(function()
  1606. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Viridian"])
  1607. end)
  1608.  
  1609. Vermillion.MouseButton1Down:connect(function()
  1610. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Vermillion"])
  1611. end)
  1612.  
  1613. Mausoleum2.MouseButton1Down:connect(function()
  1614. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Mausoleum2"])
  1615. end)
  1616.  
  1617. Canyon.MouseButton1Down:connect(function()
  1618. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Canyon"])
  1619. end)
  1620.  
  1621. Champion.MouseButton1Down:connect(function()
  1622. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Champion"])
  1623. end)
  1624.  
  1625. Lavender.MouseButton1Down:connect(function()
  1626. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Lavender"])
  1627. end)
  1628.  
  1629. AuraLab.MouseButton1Down:connect(function()
  1630. game.Players.LocalPlayer.Character:MoveTo(WayPoints["AuraLab"])
  1631. end)
  1632.  
  1633. Moon.MouseButton1Down:connect(function()
  1634. game.Players.LocalPlayer.Character:MoveTo(WayPoints["Moon"])
  1635. end)
  1636.  
  1637. ----------------------------------------------------------------------Battle Frame
  1638. Catch.MouseButton1Down:connect(function()
  1639. for i,v in pairs(game.Players.LocalPlayer.OppPokemon:GetChildren()) do
  1640. v.CurrentHP.Value = 1
  1641. v.DateMet.Value = "10/11/17"
  1642. v.Status.Value = "Sleep"
  1643. end
  1644. end)
  1645.  
  1646. Heal.MouseButton1Down:connect(function()
  1647. for i,v in pairs(game.Players.LocalPlayer.PokemonParty:GetChildren()) do
  1648. v.CurrentHP.Value = v.Stats.HPStat.Value
  1649. v.Status.Value = ""
  1650. end
  1651. end)
  1652.  
  1653. KillOpp.MouseButton1Down:connect(function()
  1654. for i,v in pairs(game.Players.LocalPlayer.OppPokemon:GetChildren()) do
  1655. v.CurrentHP.Value = 0
  1656. v.Status.Value = "Faint"
  1657. end
  1658. end)
  1659.  
  1660. Insane.MouseButton1Down:connect(function()
  1661. while true do wait(2)
  1662. for index, Pkm in pairs(game.Players.LocalPlayer.PokemonParty:GetChildren()) do
  1663. if Pkm.CurrentHP.Value < 750 then
  1664. Pkm.Stats.AtkStat.Value = "21e8"
  1665. Pkm.Stats.DefStat.Value = "21e8"
  1666. Pkm.Stats.SpAStat.Value = "21e8"
  1667. Pkm.Stats.SpDStat.Value = "21e8"
  1668. Pkm.Stats.SpeedStat.Value = "21e8"
  1669. end
  1670. end
  1671. end
  1672. end)
  1673. ----------------------------------------------------------------------Stat Frame
  1674. Nature.MouseButton1Down:connect(function()
  1675. Bottom.Text = "Changed " ..Pokename.Text.. "'s Nature to " ..NatureA.Text
  1676. wait(3)
  1677. Bottom.Text = ""
  1678. game.ReplicatedStorage.REvents.Pokemon.NatureScientist:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text], NatureA.Text)
  1679. game.ReplicatedStorage.REvents.Pokemon.StatChange:FireServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1680. end)
  1681.  
  1682. Level.MouseButton1Down:connect(function()
  1683. Bottom.Text = "Added "..LevelA.Text.. " levels to " ..Pokename.Text.. ", Please give time to add levels"
  1684. for i=1,LevelA.Text do
  1685. game.ReplicatedStorage.REvents.Pokemon.rarecandyCheck:InvokeServer("Rare Candy")
  1686. game.ReplicatedStorage.REvents.Pokemon.BluePill:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1687. game.ReplicatedStorage.REvents.Internal.mathCheck:FireServer(game.Players.LocalPlayer.Bag.Evolution["Rare Candy"], true)
  1688. game.ReplicatedStorage.REvents.Pokemon.StatChange:FireServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1689. end
  1690. end)
  1691.  
  1692. IV.MouseButton1Down:connect(function()
  1693. Bottom.Text = "Maxed out " ..Pokename.Text.. "'s IV's"
  1694. wait(3)
  1695. Bottom.Text = ""
  1696. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1697. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1698. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1699. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1700. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1701. game.ReplicatedStorage.REvents.Pokemon.IVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty[Pokename.Text])
  1702. end)
  1703.  
  1704. Reset.MouseButton1Down:connect(function()
  1705. game.ReplicatedStorage.REvents.Pokemon.ChangeEVs:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1706. [Pokename.Text], "Stat Reset")
  1707. Bottom.Text = "Set All of " ..Pokename.Text.. "'s EV's to 0"
  1708. wait(3)
  1709. Bottom.Text = ""
  1710. end)
  1711.  
  1712. Atk.MouseButton1Down:connect(function()
  1713. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1714. [Pokename.Text].EV.AtkEV, tonumber(EVA.Text))
  1715. Bottom.Text = Pokename.Text.. "'s Attack EV is now " ..EVA.Text
  1716. wait(3)
  1717. Bottom.Text = ""
  1718. end)
  1719.  
  1720. SpAtk.MouseButton1Down:connect(function()
  1721. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1722. [Pokename.Text].EV.SpAEV, tonumber(EVA.Text))
  1723. Bottom.Text = Pokename.Text.. "'s Sp Attack EV is now " ..EVA.Text
  1724. wait(3)
  1725. Bottom.Text = ""
  1726. end)
  1727.  
  1728. Spd.MouseButton1Down:connect(function()
  1729. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1730. [Pokename.Text].EV.SpeedEV, tonumber(EVA.Text))
  1731. Bottom.Text = Pokename.Text.. "'s Speed EV is now " ..EVA.Text
  1732. wait(3)
  1733. Bottom.Text = ""
  1734. end)
  1735.  
  1736. Def.MouseButton1Down:connect(function()
  1737. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1738. [Pokename.Text].EV.DefEV, tonumber(EVA.Text))
  1739. Bottom.Text = Pokename.Text.. "'s Defense EV is now " ..EVA.Text
  1740. wait(3)
  1741. Bottom.Text = ""
  1742. end)
  1743.  
  1744. SpDef.MouseButton1Down:connect(function()
  1745. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1746. [Pokename.Text].EV.SpDEV, tonumber(EVA.Text))
  1747. Bottom.Text = Pokename.Text.. "'s Sp Defense EV is now " ..EVA.Text
  1748. wait(3)
  1749. Bottom.Text = ""
  1750. end)
  1751.  
  1752. Health.MouseButton1Down:connect(function()
  1753. game.ReplicatedStorage.REvents.Pokemon.EVChange:InvokeServer(game.Players.LocalPlayer.PokemonParty
  1754. [Pokename.Text].EV.HPEV, tonumber(EVA.Text))
  1755. Bottom.Text = Pokename.Text.. "'s Sp Health EV is now " ..EVA.Text
  1756. wait(3)
  1757. Bottom.Text = ""
  1758. end)
  1759.  
  1760. print("Credits to Terminator and CharWar on V3rm for some of the scripts used in this Gui.")
  1761. print("If i'm missing any credits please let me know at Wizard#0627")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement