Project Pokemon level 100 script made by The Exploiter - Pastebin.com (2024)

  1. local ScreenGui = Instance.new("ScreenGui")

  2. local maingui = Instance.new("Frame")

  3. local close = Instance.new("TextButton")

  4. local txt = Instance.new("TextLabel")

  5. local im = Instance.new("TextButton")

  6. local mt = Instance.new("TextButton")

  7. local ray = Instance.new("TextButton")

  8. local ground = Instance.new("TextButton")

  9. local lb = Instance.new("TextButton")

  10. local ky = Instance.new("TextButton")

  11. local vrson = Instance.new("TextLabel")

  12. local opengui = Instance.new("Frame")

  13. local open = Instance.new("TextButton")

  14. ScreenGui.Parent = game.CoreGui

  15. maingui.Name = "maingui"

  16. maingui.Parent = ScreenGui

  17. maingui.Active = true

  18. maingui.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  19. maingui.BorderColor3 = Color3.new(1, 0.333333, 0)

  20. maingui.BorderSizePixel = 5

  21. maingui.Position = UDim2.new(0.268379748, 0, 0.353808373, 0)

  22. maingui.Size = UDim2.new(0, 559, 0, 252)

  23. maingui.Visible = false

  24. maingui.Active = true

  25. maingui.Draggable = true

  26. close.Name = "close"

  27. close.Parent = maingui

  28. close.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  29. close.BorderColor3 = Color3.new(1, 0.333333, 0)

  30. close.BorderSizePixel = 5

  31. close.Position = UDim2.new(0.883720934, 0, 0, 0)

  32. close.Size = UDim2.new(0, 65, 0, 30)

  33. close.Font = Enum.Font.SourceSans

  34. close.Text = "X"

  35. close.TextColor3 = Color3.new(0, 0, 0)

  36. close.TextScaled = true

  37. close.TextSize = 14

  38. close.TextWrapped = true

  39. close.MouseButton1Down:connect(function()

  40. maingui.Visible = false

  41. opengui.Visible = true

  42. end)

  43. txt.Name = "txt"

  44. txt.Parent = maingui

  45. txt.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  46. txt.BorderColor3 = Color3.new(1, 0.333333, 0)

  47. txt.BorderSizePixel = 5

  48. txt.Size = UDim2.new(0, 494, 0, 30)

  49. txt.Font = Enum.Font.SourceSans

  50. txt.Text = "By: The Exploiter"

  51. txt.TextColor3 = Color3.new(0, 0, 0)

  52. txt.TextScaled = true

  53. txt.TextSize = 14

  54. txt.TextWrapped = true

  55. im.Name = "im"

  56. im.Parent = maingui

  57. im.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  58. im.BorderColor3 = Color3.new(1, 0.333333, 0)

  59. im.BorderSizePixel = 5

  60. im.Position = UDim2.new(0.050089445, 0, 0.257936507, 0)

  61. im.Size = UDim2.new(0, 162, 0, 50)

  62. im.Font = Enum.Font.SourceSans

  63. im.Text = "Ice Mewtwo"

  64. im.TextColor3 = Color3.new(0, 0, 0)

  65. im.TextScaled = true

  66. im.TextSize = 14

  67. im.TextWrapped = true

  68. im.MouseButton1Down:connect(function()

  69. local pokemon = "Ice Mewtwo"

  70. local lvl = "100"

  71. local Encrypt = function(CodeSource)

  72. local StringCode = '';

  73. for i = 1, #CodeSource do

  74. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  75. end

  76. return StringCode;

  77. end

  78. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  79. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  80. end)

  81. mt.Name = "mt"

  82. mt.Parent = maingui

  83. mt.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  84. mt.BorderColor3 = Color3.new(1, 0.333333, 0)

  85. mt.BorderSizePixel = 5

  86. mt.Position = UDim2.new(0.40071556, 0, 0.257936507, 0)

  87. mt.Size = UDim2.new(0, 162, 0, 50)

  88. mt.Font = Enum.Font.SourceSans

  89. mt.Text = "Mewtwo"

  90. mt.TextColor3 = Color3.new(0, 0, 0)

  91. mt.TextScaled = true

  92. mt.TextSize = 14

  93. mt.TextWrapped = true

  94. mt.MouseButton1Down:connect(function()

  95. local pokemon = "Mewtwo"

  96. local lvl = "100"

  97. local Encrypt = function(CodeSource)

  98. local StringCode = '';

  99. for i = 1, #CodeSource do

  100. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  101. end

  102. return StringCode;

  103. end

  104. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  105. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  106. end)

  107. ray.Name = "ray"

  108. ray.Parent = maingui

  109. ray.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  110. ray.BorderColor3 = Color3.new(1, 0.333333, 0)

  111. ray.BorderSizePixel = 5

  112. ray.Position = UDim2.new(0.0500894189, 0, 0.59523809, 0)

  113. ray.Size = UDim2.new(0, 162, 0, 50)

  114. ray.Font = Enum.Font.SourceSans

  115. ray.Text = "Rayquaza"

  116. ray.TextColor3 = Color3.new(0, 0, 0)

  117. ray.TextScaled = true

  118. ray.TextSize = 14

  119. ray.TextWrapped = true

  120. ray.MouseButton1Down:connect(function()

  121. local pokemon = "Rayquaza"

  122. local lvl = "100"

  123. local Encrypt = function(CodeSource)

  124. local StringCode = '';

  125. for i = 1, #CodeSource do

  126. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  127. end

  128. return StringCode;

  129. end

  130. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  131. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  132. end)

  133. ground.Name = "ground"

  134. ground.Parent = maingui

  135. ground.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  136. ground.BorderColor3 = Color3.new(1, 0.333333, 0)

  137. ground.BorderSizePixel = 5

  138. ground.Position = UDim2.new(0.40071553, 0, 0.59523809, 0)

  139. ground.Size = UDim2.new(0, 162, 0, 50)

  140. ground.Font = Enum.Font.SourceSans

  141. ground.Text = "Groudon"

  142. ground.TextColor3 = Color3.new(0, 0, 0)

  143. ground.TextScaled = true

  144. ground.TextSize = 14

  145. ground.TextWrapped = true

  146. ground.MouseButton1Down:connect(function()

  147. local pokemon = "Groudon"

  148. local lvl = "100"

  149. local Encrypt = function(CodeSource)

  150. local StringCode = '';

  151. for i = 1, #CodeSource do

  152. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  153. end

  154. return StringCode;

  155. end

  156. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  157. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  158. end)

  159. lb.Name = "lb"

  160. lb.Parent = maingui

  161. lb.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  162. lb.BorderColor3 = Color3.new(1, 0.333333, 0)

  163. lb.BorderSizePixel = 5

  164. lb.Position = UDim2.new(0.749552786, 0, 0.257936507, 0)

  165. lb.Size = UDim2.new(0, 110, 0, 50)

  166. lb.Font = Enum.Font.SourceSans

  167. lb.Text = "Legendary Birds"

  168. lb.TextColor3 = Color3.new(0, 0, 0)

  169. lb.TextScaled = true

  170. lb.TextSize = 14

  171. lb.TextWrapped = true

  172. lb.MouseButton1Down:connect(function()

  173. local pokemon = "Articuno"

  174. local lvl = "100"

  175. local Encrypt = function(CodeSource)

  176. local StringCode = '';

  177. for i = 1, #CodeSource do

  178. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  179. end

  180. return StringCode;

  181. end

  182. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  183. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  184. local pokemon = "Zapdos"

  185. local lvl = "100"

  186. local Encrypt = function(CodeSource)

  187. local StringCode = '';

  188. for i = 1, #CodeSource do

  189. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  190. end

  191. return StringCode;

  192. end

  193. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  194. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  195. local pokemon = "Moltres"

  196. local lvl = "100"

  197. local Encrypt = function(CodeSource)

  198. local StringCode = '';

  199. for i = 1, #CodeSource do

  200. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  201. end

  202. return StringCode;

  203. end

  204. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  205. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  206. end)

  207. ky.Name = "ky"

  208. ky.Parent = maingui

  209. ky.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  210. ky.BorderColor3 = Color3.new(1, 0.333333, 0)

  211. ky.BorderSizePixel = 5

  212. ky.Position = UDim2.new(0.749552786, 0, 0.59523809, 0)

  213. ky.Size = UDim2.new(0, 110, 0, 50)

  214. ky.Font = Enum.Font.SourceSans

  215. ky.Text = "Kyurem"

  216. ky.TextColor3 = Color3.new(0, 0, 0)

  217. ky.TextScaled = true

  218. ky.TextSize = 14

  219. ky.TextWrapped = true

  220. ky.MouseButton1Down:connect(function()

  221. local pokemon = "Kyurem"

  222. local lvl = "100"

  223. local Encrypt = function(CodeSource)

  224. local StringCode = '';

  225. for i = 1, #CodeSource do

  226. StringCode = StringCode ..string.char(48)..string.byte(string.sub(CodeSource,i,i));

  227. end

  228. return StringCode;

  229. end

  230. local pass = Encrypt(game.Players.LocalPlayer.Name..lvl..pokemon)

  231. game.ReplicatedStorage.REvents.Pokemon.iwillknowXD:InvokeServer(pokemon, game.Players.LocalPlayer.PokemonParty, lvl, true, true, pass)

  232. end)

  233. vrson.Name = "vrson"

  234. vrson.Parent = maingui

  235. vrson.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  236. vrson.BorderColor3 = Color3.new(1, 0.333333, 0)

  237. vrson.BorderSizePixel = 5

  238. vrson.Position = UDim2.new(0.821109116, 0, 0.928571284, 0)

  239. vrson.Size = UDim2.new(0, 100, 0, 17)

  240. vrson.Font = Enum.Font.SourceSans

  241. vrson.Text = "Verson: 0.01"

  242. vrson.TextColor3 = Color3.new(0, 0, 0)

  243. vrson.TextScaled = true

  244. vrson.TextSize = 14

  245. vrson.TextWrapped = true

  246. opengui.Name = "opengui"

  247. opengui.Parent = ScreenGui

  248. opengui.BackgroundColor3 = Color3.new(1, 0.666667, 0)

  249. opengui.BorderColor3 = Color3.new(1, 0.333333, 0)

  250. opengui.BorderSizePixel = 5

  251. opengui.Position = UDim2.new(0.463954329, 0, 0.949631453, 0)

  252. opengui.Size = UDim2.new(0, 100, 0, 29)

  253. open.Name = "open"

  254. open.Parent = opengui

  255. open.BackgroundColor3 = Color3.new(1, 1, 1)

  256. open.BackgroundTransparency = 1

  257. open.Size = UDim2.new(0, 100, 0, 29)

  258. open.Font = Enum.Font.SourceSans

  259. open.Text = "Open"

  260. open.TextColor3 = Color3.new(0, 0, 0)

  261. open.TextScaled = true

  262. open.TextSize = 14

  263. open.TextWrapped = true

  264. open.MouseButton1Down:connect(function()

  265. maingui.Visible = true

  266. opengui.Visible = false

  267. end)

Project Pokemon level 100 script made by The Exploiter - Pastebin.com (2024)
Top Articles
Latest Posts
Article information

Author: Amb. Frankie Simonis

Last Updated:

Views: 5977

Rating: 4.6 / 5 (56 voted)

Reviews: 87% of readers found this page helpful

Author information

Name: Amb. Frankie Simonis

Birthday: 1998-02-19

Address: 64841 Delmar Isle, North Wiley, OR 74073

Phone: +17844167847676

Job: Forward IT Agent

Hobby: LARPing, Kitesurfing, Sewing, Digital arts, Sand art, Gardening, Dance

Introduction: My name is Amb. Frankie Simonis, I am a hilarious, enchanting, energetic, cooperative, innocent, cute, joyous person who loves writing and wants to share my knowledge and understanding with you.