Advertisement
Nukex12

Project Pokemon Script

Jun 17th, 2022
5,755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.98 KB | None | 0 0
  1. Game: https://www.roblox.com/games/8129673115/Master-quest-2
  2.  
  3. Credit: V3rmillion, payk12
  4.  
  5. Script:
  6.  
  7. MDown = false
  8. Mouse = game.Players.LocalPlayer:GetMouse()
  9. function ConvertNumbers(X, Y)
  10. local TX = Mouse.ViewSizeX*X
  11. local TY = Mouse.ViewSizeY*Y
  12. return TX, TY
  13. end
  14. function MoveableItem(item)
  15. item.InputBegan:connect(function(input)
  16. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  17. MDown = true
  18. local CX, CY = ConvertNumbers(item.Position.X.Scale, item.Position.Y.Scale)
  19. item.Position = UDim2.new(0, item.Position.X.Offset+CX, 0, item.Position.Y.Offset+CY)
  20. local StartX = Mouse.X - item.Position.X.Offset
  21. local StartY = Mouse.Y - item.Position.Y.Offset
  22. while MDown == true do
  23. item.Position = UDim2.new(0, Mouse.X - StartX, 0, Mouse.Y - StartY)
  24. wait()
  25. end
  26. end
  27. end)
  28. item.InputEnded:connect(function(input)
  29. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  30. MDown = false
  31. end
  32. end)
  33. end
  34.  
  35. Badges = {1, 2, 3, 4, 5 , 6, 7, 8, "Aether Paradise", "Indigo", "EV", "Champ", "Eternatus", "Mysterious Grotto", "Sword", "Mausoleum of Origins"}
  36. local ItemTable = {
  37. ["Recover"] = { ["Antidote"] = true, ["Awakening"] = true, ["Burn Heal"] = true, ["Full Restore"] = true, ["Hyper Potion"] = true, ["Max Elixir"] = true, ["Paralyze Heal"] = true, ["Revive"] = true, ["Potion"] = true, ["Ice Heal"] = true},
  38. ["Pokeball"] = { ["Great Ball"] = true, ["Premier Ball"] = true, ["Ultra Ball"] = true, ["Pokeball"] = true, ["Repeat Ball"] = true, ["Nest Ball"] = true, ["Net Ball"] = true, ["Master Ball"] = true },
  39. ["Competitive"] = { ["Calcium"] = true, ["Carbos"] = true, ["HP Up"] = true, ["Iron"] = true, ["Mini Stat Reset"] = true, ["Nature Stone"] = true, ["PokeImprove"] = true, ["Protein"] = true, ["Stat Reset"] = true, ["Zinc"] = true },
  40. ["Evolution"] = {["Rare Candy"] = true, ["Common Candy"] = true, ["Dragon Scale"] = true, ["Fire Stone"] = true, ["Friendship Ribbon"] = true, ["Leaf Stone"] = true, ["Link Cable Stone"] = true, ["Metal Coat"] = true, ["Moon Stone"] = true, ["Sinnoh Stone"] = true, ["Thunder Stone"] = true, ["Water Stone"] = true },
  41. ["HeldItems"] = { ["Aggronite"] = true, ["Beedrillite"] = true, ["Altarianite"] = true, ["Audinite"] = true, ["Glalitite"] = true, ["Ampharosite"] = true, ["Pinsirite"] = true, ["Slowbronite"] = true, ["Manectite"] = true, ["Venusaurite"] = true, ["Swampertite"] = true, ["Tyranitarite"] = true, ["Salamencite"] = true, ["Sablenite"] = true, ["Heracronite"] = true, ["Lopunnite"] = true, ["Latiosite"] = true, ["Latiasite"] = true, ["Houndoomite"] = true, ["Lucarionite"] = true, ["Metagrossite"] = true, ["Steelixite"] = true, ["Sharpedonite"] = true, ["Sceptilite"] = true, ["Pidgeotite"] = true, ["Gyaradosite"] = true, ["Medichamite"] = true, ["Mawilite"] = true, ["Gengarite"] = true, ["Gardevoirite"] = true, ["Galladite"] = true, ["Charizardite Y"] = true, ["Charizardite X"] = true, ["Cameruptite"] = true, ["Blazikenite"] = true, ["Blastoisinite"] = true, ["Absolite"] = true, ["Alakazamite"] = true, ["Banettite"] = true, ["Aerodactylite"] = true, ["Garchompite"] = true, ["Scizorite"] = true }
  42. };
  43. --GetFunctionsRequired and making bypasses--
  44. Tab = getrenv()._G
  45. FakeFunctions = {["UpgradedRoulette"] = true, ["BattleInitiate"] = true, ["ForceOak"] = true, ["GetBattleTowerTeam"] = true, ["PCSystem"] = true, ["UltimateRoulette"] = true, ["MoveRelearner"] = true, ["EVChecker"] = true, ["nickname"] = true, ["TrainerCard"] = true, ["PokeBoosters"] = true, ["BattleTowerSelectPoke"] = true, ["ItemBattle"] = true, ["UpdateBag"] = true, ["StatScreen"] = true, ["getBackSprite"] = true, ["Roulette"] = true, ["Shop"] = true, ["CashShop"] = true, ["TMShop"] = true, ["MysteryGift"] = true, ["Redward"] = true, ["TransferAura"] = true, ["UsernamePartyGet"] = true, ["Trade"] = true, ["BPTMShop"] = true, ["PokemonShop"] = true, ["Nickname"] = true, ["NatureScientist"] = true, ["BPItemShop"] = true, ["PartyBattle"] = true, ["getFrontSprite"] = true, ["Pokedex"] = true, ["PVPParty"] = true, ["PartyOverworld"] = true, ["ShowStats"] = true}
  46. function GetRealFunction()
  47. for i, v in pairs(Tab) do
  48. if typeof(v) == "function" and FakeFunctions[tostring(i)] == nil then
  49. return v
  50. end
  51. end
  52. end
  53. SpawnFunction = GetRealFunction()
  54. if debug.getconstant(SpawnFunction, 3) == "getrenv" then
  55. debug.setconstant(SpawnFunction, 3, "This is a really long string which should bypass anything because I said so.")
  56. end
  57. Math = require(game.ReplicatedStorage.Functions.Math)
  58. BadgeFunction = Math.AwardBadge
  59. FuncAddItem = Math.AddItem
  60. AddItem = Math.BuyItem
  61. if debug.getconstant(BadgeFunction, 3) == "getrenv" then
  62. debug.setconstant(BadgeFunction, 3, "Again, this is a really long string which should bypass their stupid security they have in place xD")
  63. end
  64. if debug.getconstant(FuncAddItem, 3) == "getrenv" then
  65. debug.setconstant(FuncAddItem, 3, "Again, this is a really long string which should bypass their stupid security they have in place xD")
  66. end
  67. if debug.getconstant(AddItem, 3) == "getrenv" then
  68. debug.setconstant(AddItem, 3, "Again, this is a really long string which should bypass their stupid security they have in place xD")
  69. end
  70. --End of getting functions--
  71. --Setup functions--
  72. Rep = game:GetService("ReplicatedStorage")
  73. MoveLearn = Rep.REvents.Pokemon.MoveLearn
  74. function ChangeParent(Object, Par)
  75. Rep.REvents.PC.ParentChange:InvokeServer(Object, Par)
  76. end
  77. function GetSlot(Par, Val)
  78. local Tab = {}
  79. for i = 1, 60 do
  80. Tab[i] = true
  81. end
  82. for i, v in pairs(Par:GetChildren()) do
  83. if v:FindFirstChild("PartyPosition") then
  84. Tab[v.PartyPosition.Value] = nil
  85. end
  86. end
  87. if Val ~= nil then
  88. return Tab
  89. end
  90. for i = 1, 60 do
  91. if Tab[i] == true then
  92. return tonumber(i)
  93. end
  94. end
  95. return 0
  96. end
  97. local Accepted = 0
  98. local SpawnPlace = game.Players.LocalPlayer.Backpack
  99. function SpawnPokemon(Poke, Lvl, Par, S, A)
  100. Poke = SpawnFunction(Poke, SpawnPlace, Lvl)
  101. if tostring(Par) == "PokemonParty" then
  102. if (S == true and Poke:WaitForChild("Shiny").Value ~= true or A == true and not Poke:FindFirstChild("Aura")) then
  103. ChangeParent(Poke, nil)
  104. return
  105. end
  106. Rep.REvents.PC.ChangePos:InvokeServer(Poke, #Par:GetChildren()+1)
  107. ChangeParent(Poke, Par)
  108. end
  109. end
  110. function GetPokemon(Poke)
  111. local Pokes = Tab.Pokemon
  112. if Pokes[Poke] ~= nil then
  113. return Poke
  114. end
  115. for i, v in pairs(Pokes) do
  116. if string.sub(string.lower(i), 1, string.len(Poke)) == string.lower(Poke) then
  117. return i
  118. end
  119. end
  120. end
  121. function ChangeName(Ob)
  122. Poke = game:GetService("Players").LocalPlayer.PokemonParty:FindFirstChildOfClass("Configuration")
  123. spawn(function()
  124. pcall(function()
  125. Move = Poke.Moves:FindFirstChildOfClass("IntValue").Name
  126. if Ob.Name ~= Move then
  127. MoveLearn:InvokeServer(Poke, Ob, Move)
  128. end
  129. end)
  130. end)
  131. end
  132. function MakeItem(Par, Name, Val)
  133. FuncAddItem(nil, Name, Par, Val)
  134. end
  135. function ChangeNumber(Item, Val)
  136. AddItem(nil, Item, Val)
  137. end
  138. --End of setup--
  139.  
  140. function OpenTabF(Tab)
  141. Local.Visible = false
  142. Server.Visible = false
  143. Spawner.Visible = false
  144. Tab.Visible = true
  145. OpenClose()
  146. end
  147.  
  148. ScreenGui = Instance.new("ScreenGui", game:GetService("CoreGui"))
  149. ScreenGui.Name = "PokemonGui"
  150. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  151. if _G.SG ~= nil then
  152. _G.SG:remove()
  153. end
  154. _G.SG = ScreenGui
  155.  
  156. Frame = Instance.new("Frame", ScreenGui)
  157. Frame.Name = "Frame"
  158. Frame.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  159. Frame.BorderSizePixel = 0
  160. Frame.Position = UDim2.new(0.301, 0, 0.36, 0)
  161. Frame.Size = UDim2.new(0, 375, 0, 37)
  162. MoveableItem(Frame)
  163.  
  164. MainFrame = Instance.new("Frame", Frame)
  165. MainFrame.Name = "MainFrame"
  166. MainFrame.BackgroundColor3 = Color3.fromRGB(48, 48, 48)
  167. MainFrame.BorderSizePixel = 0
  168. MainFrame.Position = UDim2.new(0, 0, 1, 0)
  169. MainFrame.Size = UDim2.new(0, 375, 0, 221)
  170. MainFrame.ClipsDescendants = true
  171.  
  172. Tabs = Instance.new("ScrollingFrame", MainFrame)
  173. Tabs.Name = "Tabs"
  174. Tabs.Active = true
  175. Tabs.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
  176. Tabs.BorderSizePixel = 0
  177. Tabs.Size = UDim2.new(0, 100, 0, 221)
  178. Tabs.Visible = false
  179. Tabs.ScrollBarImageColor3 = Color3.fromRGB(0, 0, 0)
  180. Tabs.ScrollBarThickness = 0
  181. Tabs.ZIndex = 100
  182.  
  183. UIListLayout = Instance.new("UIListLayout", Tabs)
  184. UIListLayout.Name = "UIListLayout"
  185. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  186. UIListLayout.Padding = UDim.new(0, 4)
  187.  
  188. Frame2 = Instance.new("Frame", Tabs)
  189. Frame2.Name = "Frame2"
  190. Frame2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  191. Frame2.BackgroundTransparency = 1
  192. Frame2.Size = UDim2.new(0, 100, 0, 0)
  193.  
  194. TextButton = Instance.new("TextButton", Tabs)
  195. TextButton.Name = "TextButton"
  196. TextButton.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  197. TextButton.BorderSizePixel = 0
  198. TextButton.Size = UDim2.new(0, 100, 0, 33)
  199. TextButton.Font = Enum.Font.SourceSans
  200. TextButton.Text = "Local"
  201. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  202. TextButton.TextSize = 21
  203. TextButton.MouseButton1Down:Connect(function()
  204. OpenTabF(Local)
  205. end)
  206.  
  207. TextButton2 = Instance.new("TextButton", Tabs)
  208. TextButton2.Name = "TextButton2"
  209. TextButton2.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  210. TextButton2.BorderSizePixel = 0
  211. TextButton2.Size = UDim2.new(0, 100, 0, 33)
  212. TextButton2.Font = Enum.Font.SourceSans
  213. TextButton2.Text = "Server"
  214. TextButton2.TextColor3 = Color3.fromRGB(255, 255, 255)
  215. TextButton2.TextSize = 21
  216. TextButton2.MouseButton1Down:Connect(function()
  217. OpenTabF(Server)
  218. end)
  219.  
  220. TextButton3 = Instance.new("TextButton", Tabs)
  221. TextButton3.Name = "TextButton3"
  222. TextButton3.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  223. TextButton3.BorderSizePixel = 0
  224. TextButton3.Size = UDim2.new(0, 100, 0, 33)
  225. TextButton3.Font = Enum.Font.SourceSans
  226. TextButton3.Text = "Spawner"
  227. TextButton3.TextColor3 = Color3.fromRGB(255, 255, 255)
  228. TextButton3.TextSize = 21
  229. TextButton3.MouseButton1Down:Connect(function()
  230. OpenTabF(Spawner)
  231. end)
  232.  
  233. Local = Instance.new("Frame", MainFrame)
  234. Local.Name = "Local"
  235. Local.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  236. Local.BackgroundTransparency = 1
  237. Local.BorderSizePixel = 0
  238. Local.Size = UDim2.new(0, 375, 0, 221)
  239. Local.Visible = true
  240.  
  241. Frame3 = Instance.new("Frame", Local)
  242. Frame3.Name = "Frame3"
  243. Frame3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  244. Frame3.BackgroundTransparency = 1
  245. Frame3.Position = UDim2.new(0, 32.5, 0.24, -1)
  246. Frame3.Size = UDim2.new(0, 335, 0, 168)
  247.  
  248. Money = Instance.new("TextButton", Frame3)
  249. Money.Name = "Money"
  250. Money.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  251. Money.BorderSizePixel = 0
  252. Money.Position = UDim2.new(0.222, 0, 0.032, 0)
  253. Money.Size = UDim2.new(0, 80, 0, 37)
  254. Money.Font = Enum.Font.SourceSans
  255. Money.Text = "Set Money"
  256. Money.TextColor3 = Color3.fromRGB(255, 255, 255)
  257. Money.TextSize = 21
  258. Money.MouseButton1Down:Connect(function()
  259. local TempNumber = tonumber(Num.Text)
  260. if tonumber(Num.Text) == nil then
  261. TempNumber = 0
  262. end
  263. if Name2.Text ~= "" then
  264. for i, v in pairs(game.Players:GetPlayers()) do
  265. if string.match(string.lower(tostring(v)), string.lower(Name2.Text)) then
  266. MakeItem(v, "Money", TempNumber)
  267. ChangeName(v.Money)
  268. end
  269. end
  270. else
  271. MakeItem(game.Players.LocalPlayer, "Money", TempNumber)
  272. ChangeName(game.Players.LocalPlayer.Money)
  273. end
  274. end)
  275.  
  276. Badge = Instance.new("TextButton", Frame3)
  277. Badge.Name = "Badge"
  278. Badge.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  279. Badge.BorderSizePixel = 0
  280. Badge.Position = UDim2.new(0.222, 0, 0.452, 0)
  281. Badge.Size = UDim2.new(0, 80, 0, 37)
  282. Badge.Font = Enum.Font.SourceSans
  283. Badge.Text = "Badges"
  284. Badge.TextColor3 = Color3.fromRGB(255, 255, 255)
  285. Badge.TextSize = 21
  286. Badge.MouseButton1Down:Connect(function()
  287. if Name2.Text ~= "" then
  288. for i, v in pairs(game.Players:GetPlayers()) do
  289. if string.match(string.lower(tostring(v)), string.lower(Name2.Text)) and v:FindFirstChild("Badges") then
  290. for a = 1, #Badges do
  291. if not v.Badges:FindFirstChild(Badges[a]) then
  292. spawn(function()
  293. MakeItem(v.Badges, Badges[a], 0)
  294. end)
  295. end
  296. end
  297. end
  298. end
  299. else
  300. for i = 1, #Badges do
  301. if not game.Players.LocalPlayer.Badges:FindFirstChild(Badges[i]) then
  302. spawn(function()
  303. MakeItem(game.Players.LocalPlayer.Badges, Badges[i], 0)
  304. end)
  305. end
  306. end
  307. end
  308. end)
  309.  
  310. Items = Instance.new("TextButton", Frame3)
  311. Items.Name = "Items"
  312. Items.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  313. Items.BorderSizePixel = 0
  314. Items.Position = UDim2.new(0.222, 0, 0.249, 0)
  315. Items.Size = UDim2.new(0, 80, 0, 37)
  316. Items.Font = Enum.Font.SourceSans
  317. Items.Text = "Set Items"
  318. Items.TextColor3 = Color3.fromRGB(255, 255, 255)
  319. Items.TextSize = 19
  320. Items.MouseButton1Down:connect(function()
  321. local TempItems = Tab.Items
  322. local TItem = Name3.Text
  323. local Amount = 0
  324. if tonumber(Num.Text) ~= nil then
  325. Amount = tonumber(Num.Text)
  326. end
  327. if not TempItems[TItem] then
  328. for i, v in pairs(TempItems) do
  329. if string.match(string.lower(i), string.lower(TItem)) then
  330. TItem = i
  331. break
  332. end
  333. end
  334. end
  335. if TempItems[TItem] == nil then
  336. return
  337. end
  338. Plr = game.Players.LocalPlayer
  339. if Name2.Text ~= "" then
  340. for i, v in pairs(game.Players:GetPlayers()) do
  341. if string.match(tostring(v), Name2.Text) then
  342. Plr = v
  343. end
  344. end
  345. end
  346. local Slot = nil
  347. for i, v in pairs(ItemTable) do
  348. if v[TItem] ~= nil then
  349. Slot = i
  350. break
  351. end
  352. end
  353. if Slot ~= nil then
  354. if Plr.Bag[Slot]:FindFirstChild(TItem) and Plr == game.Players.LocalPlayer then
  355. ChangeNumber(Plr.Bag[Slot][TItem], Amount)
  356. else
  357. MakeItem(Plr.Bag[Slot], TItem, Amount)
  358. end
  359. end
  360. end)
  361.  
  362. Heal = Instance.new("TextButton", Frame3)
  363. Heal.Name = "Heal"
  364. Heal.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  365. Heal.BorderSizePixel = 0
  366. Heal.Position = UDim2.new(0.222, 0, 0.249, 0)
  367. Heal.Size = UDim2.new(0, 80, 0, 37)
  368. Heal.Font = Enum.Font.SourceSans
  369. Heal.Text = "Heal - Local"
  370. Heal.TextColor3 = Color3.fromRGB(255, 255, 255)
  371. Heal.TextSize = 19
  372. Heal.MouseButton1Down:connect(function()
  373. for i, v in pairs(game.Players.LocalPlayer.PokemonParty:GetChildren()) do
  374. v.Status.Value = ""
  375. v.CurrentHP.Value = v.Stats.HPStat
  376. end
  377. end)
  378.  
  379. UIGridLayout = Instance.new("UIGridLayout", Frame3)
  380. UIGridLayout.Name = "UIGridLayout"
  381. UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder
  382. UIGridLayout.CellSize = UDim2.new(0, 100, 0, 37)
  383. UIGridLayout.CellPadding = UDim2.new(0, 6, 0, 5)
  384.  
  385. PDex = Instance.new("TextButton", Frame3)
  386. PDex.Name = "PDex"
  387. PDex.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  388. PDex.BorderSizePixel = 0
  389. PDex.Position = UDim2.new(0.222, 0, 0.249, 0)
  390. PDex.Size = UDim2.new(0, 80, 0, 37)
  391. PDex.Font = Enum.Font.SourceSans
  392. PDex.Text = "Pokedex"
  393. PDex.TextColor3 = Color3.fromRGB(255, 255, 255)
  394. PDex.TextSize = 19
  395. PDex.MouseButton1Down:connect(function()
  396. Plr = nil
  397. if Name2.Text ~= "" then
  398. for i, v in pairs(game.Players:GetPlayers()) do
  399. if string.match(tostring(v), Name2.Text) then
  400. Plr = v
  401. end
  402. end
  403. else
  404. Plr = game.Players.LocalPlayer
  405. end
  406. if Plr ~= nil then
  407. PF = Rep.REvents.Pokemon
  408. for i, v in pairs(Tab["Pokemon"]) do
  409. if not Plr.Pokedex:FindFirstChild(tostring(v.Pokedex)) or Plr.Pokedex[tostring(v.Pokedex)].Caught.Value == false then
  410. PF.createPokedex:FireServer(i)
  411. spawn(function()
  412. repeat
  413. wait()
  414. until game.Players.LocalPlayer.Pokedex:FindFirstChild(tostring(v.Pokedex))
  415. PF.caughtPokedex:FireServer(i)
  416. repeat
  417. wait()
  418. until game.Players.LocalPlayer.Pokedex:FindFirstChild(tostring(v.Pokedex)).Caught.Value == true
  419. ChangeParent(game.Players.LocalPlayer.Pokedex:FindFirstChild(tostring(v.Pokedex)), Plr.Pokedex)
  420. end)
  421. end
  422. end
  423. end
  424. end)
  425.  
  426. BP = Instance.new("TextButton", Frame3)
  427. BP.Name = "BP"
  428. BP.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  429. BP.BorderSizePixel = 0
  430. BP.Position = UDim2.new(0.222, 0, 0.249, 0)
  431. BP.Size = UDim2.new(0, 80, 0, 37)
  432. BP.Font = Enum.Font.SourceSans
  433. BP.Text = "BattlePoints"
  434. BP.TextColor3 = Color3.fromRGB(255, 255, 255)
  435. BP.TextScaled = 19
  436. BP.MouseButton1Down:Connect(function()
  437. local TempNumber = tonumber(Num.Text)
  438. if tonumber(Num.Text) == nil then
  439. TempNumber = 0
  440. end
  441. if Name2.Text ~= "" then
  442. for i, v in pairs(game.Players:GetPlayers()) do
  443. if string.match(tostring(v), Name2.Text) then
  444. MakeItem(v, "BP", TempNumber)
  445. ChangeName(v.BP)
  446. end
  447. end
  448. else
  449. MakeItem(game.Players.LocalPlayer, "BP", TempNumber)
  450. ChangeName(game.Players.LocalPlayer.BP)
  451. end
  452. end)
  453.  
  454. Num = Instance.new("TextBox", Local)
  455. Num.Name = "Num"
  456. Num.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  457. Num.BorderSizePixel = 0
  458. Num.Position = UDim2.new(1, -131, 0.032, 0)
  459. Num.Size = UDim2.new(0, 100, 0, 37)
  460. Num.Font = Enum.Font.SourceSans
  461. Num.PlaceholderText = "Number"
  462. Num.Text = ""
  463. Num.TextColor3 = Color3.fromRGB(255, 255, 255)
  464. Num.TextScaled = true
  465.  
  466. Name2 = Instance.new("TextBox", Local)
  467. Name2.Name = "Name2"
  468. Name2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  469. Name2.BorderSizePixel = 0
  470. Name2.Position = UDim2.new(0, 32.5, 0.032, 0)
  471. Name2.Size = UDim2.new(0, 100, 0, 37)
  472. Name2.Font = Enum.Font.SourceSans
  473. Name2.PlaceholderText = "Player Name"
  474. Name2.Text = ""
  475. Name2.TextColor3 = Color3.fromRGB(255, 255, 255)
  476. Name2.TextScaled = true
  477.  
  478. Name3 = Instance.new("TextBox", Local)
  479. Name3.Name = "Name3"
  480. Name3.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  481. Name3.BorderSizePixel = 0
  482. Name3.Position = UDim2.new(0, 138.5, 0.032, 0)
  483. Name3.Size = UDim2.new(0, 100, 0, 37)
  484. Name3.Font = Enum.Font.SourceSans
  485. Name3.PlaceholderText = "Item Name"
  486. Name3.Text = ""
  487. Name3.TextColor3 = Color3.fromRGB(255, 255, 255)
  488. Name3.TextScaled = true
  489.  
  490. Server = Instance.new("Frame", MainFrame)
  491. Server.Name = "Server"
  492. Server.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  493. Server.BackgroundTransparency = 1
  494. Server.BorderSizePixel = 0
  495. Server.Size = UDim2.new(0, 375, 0, 221)
  496. Server.Visible = false
  497.  
  498. Frame4 = Instance.new("Frame", Server)
  499. Frame4.Name = "Frame4"
  500. Frame4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  501. Frame4.BackgroundTransparency = 1
  502. Frame4.Position = UDim2.new(0, 0, 0.24, 0)
  503. Frame4.Size = UDim2.new(0, 375, 0, 168)
  504.  
  505. TextButton5 = Instance.new("TextButton", Frame4)
  506. TextButton5.Name = "TextButton5"
  507. TextButton5.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  508. TextButton5.BorderSizePixel = 0
  509. TextButton5.Position = UDim2.new(0.222, 0, 0.249, 0)
  510. TextButton5.Size = UDim2.new(0, 100, 0, 37)
  511. TextButton5.Font = Enum.Font.SourceSans
  512. TextButton5.Text = "Reset Player"
  513. TextButton5.TextColor3 = Color3.fromRGB(255, 255, 255)
  514. TextButton5.TextScaled = true
  515. TextButton5.TextSize = 19
  516. TextButton5.TextWrapped = true
  517. TextButton5.MouseButton1Down:connect(function()
  518. for i, v in pairs(game.Players:GetPlayers()) do
  519. if v ~= game.Players.LocalPlayer and v.Character ~= nil and (Plr.Text == "" or string.match(string.lower(tostring(v)), string.lower(Plr.Text))) then
  520. for a, b in pairs(v.Character:GetDescendants()) do
  521. ChangeName(b)
  522. end
  523. end
  524. end
  525. end)
  526.  
  527. TextButton6 = Instance.new("TextButton", Frame4)
  528. TextButton6.Name = "TextButton6"
  529. TextButton6.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  530. TextButton6.BorderSizePixel = 0
  531. TextButton6.Position = UDim2.new(0.222, 0, 0.452, 0)
  532. TextButton6.Size = UDim2.new(0, 100, 0, 37)
  533. TextButton6.Font = Enum.Font.SourceSans
  534. TextButton6.Text = "Destroy Pc's/Party's"
  535. TextButton6.TextColor3 = Color3.fromRGB(255, 255, 255)
  536. TextButton6.TextScaled = true
  537. TextButton6.TextSize = 21
  538. TextButton6.TextWrapped = true
  539. TextButton6.MouseButton1Down:connect(function()
  540. for i, v in pairs(game.Players:GetPlayers()) do
  541. if v ~= game.Players.LocalPlayer and (Plr.Text == "" or string.match(string.lower(tostring(v)), string.lower(Plr.Text))) then
  542. for a, b in pairs(v.PokemonParty:GetChildren()) do
  543. ChangeName(b)
  544. end
  545. for a, b in pairs(v.PC:GetChildren()) do
  546. for c, d in pairs(b:GetChildren()) do
  547. ChangeName(d)
  548. end
  549. end
  550. end
  551. end
  552. end)
  553.  
  554. UIGridLayout2 = Instance.new("UIGridLayout", Frame4)
  555. UIGridLayout2.Name = "UIGridLayout2"
  556. UIGridLayout2.HorizontalAlignment = Enum.HorizontalAlignment.Center
  557. UIGridLayout2.SortOrder = Enum.SortOrder.LayoutOrder
  558. UIGridLayout2.CellPadding = UDim2.new(0, 6, 0, 5)
  559. UIGridLayout2.CellSize = UDim2.new(0, 100, 0, 37)
  560.  
  561. TextButton7 = Instance.new("TextButton", Frame4)
  562. TextButton7.Name = "TextButton7"
  563. TextButton7.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  564. TextButton7.BorderSizePixel = 0
  565. TextButton7.Position = UDim2.new(0, 0, 0.249, 0)
  566. TextButton7.Size = UDim2.new(0, 100, 0, 37)
  567. TextButton7.Font = Enum.Font.SourceSans
  568. TextButton7.Text = "Destroy Badges"
  569. TextButton7.TextColor3 = Color3.fromRGB(255, 255, 255)
  570. TextButton7.TextScaled = true
  571. TextButton7.TextSize = 20
  572. TextButton7.TextWrapped = true
  573. TextButton7.MouseButton1Down:connect(function()
  574. for i, v in pairs(game.Players:GetPlayers()) do
  575. if v ~= game.Players.LocalPlayer and v:FindFirstChild("Badges") and (Plr.Text == "" or string.match(string.lower(tostring(v)), string.lower(Plr.Text))) then
  576. for a, b in pairs(v.Badges:GetChildren()) do
  577. ChangeName(b)
  578. end
  579. end
  580. end
  581. end)
  582.  
  583. TextButton8 = Instance.new("TextButton", Frame4)
  584. TextButton8.Name = "TextButton8"
  585. TextButton8.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  586. TextButton8.BorderSizePixel = 0
  587. TextButton8.Position = UDim2.new(0.222, 0, 0.249, 0)
  588. TextButton8.Size = UDim2.new(0, 100, 0, 37)
  589. TextButton8.Font = Enum.Font.SourceSans
  590. TextButton8.Text = "Destroy Players"
  591. TextButton8.TextColor3 = Color3.fromRGB(255, 255, 255)
  592. TextButton8.TextScaled = true
  593. TextButton8.TextSize = 20
  594. TextButton8.TextWrapped = true
  595. TextButton8.MouseButton1Down:connect(function()
  596. for i, v in pairs(game.Players:GetPlayers()) do
  597. if v ~= game.Players.LocalPlayer and (Plr.Text == "" or string.match(string.lower(tostring(v)), string.lower(Plr.Text))) then
  598. for a, b in pairs(v:GetDescendants()) do
  599. ChangeName(b)
  600. end
  601. end
  602. end
  603. end)
  604.  
  605. TextButton9 = Instance.new("TextButton", Frame4)
  606. TextButton9.Name = "TextButton9"
  607. TextButton9.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  608. TextButton9.BorderSizePixel = 0
  609. TextButton9.Position = UDim2.new(0.244, 0, 0.511, 0)
  610. TextButton9.Size = UDim2.new(0, 100, 0, 37)
  611. TextButton9.Font = Enum.Font.SourceSans
  612. TextButton9.Text = "Destroy Server"
  613. TextButton9.TextColor3 = Color3.fromRGB(255, 255, 255)
  614. TextButton9.TextScaled = true
  615. TextButton9.TextSize = 20
  616. TextButton9.TextWrapped = true
  617. TextButton9.MouseButton1Down:connect(function()
  618. for i, v in pairs(game.ReplicatedStorage:GetDescendants()) do
  619. ChangeName(v)
  620. end
  621. for i, v in pairs(game.Workspace:GetDescendants()) do
  622. ChangeName(v)
  623. end
  624. end)
  625.  
  626. Plr = Instance.new("TextBox", Server)
  627. Plr.Name = "Pokemon"
  628. Plr.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  629. Plr.BorderSizePixel = 0
  630. Plr.Position = UDim2.new(0, 32.5, 0.032, 0)
  631. Plr.Size = UDim2.new(0, 100, 0, 37)
  632. Plr.Font = Enum.Font.SourceSans
  633. Plr.PlaceholderText = "Player"
  634. Plr.Text = ""
  635. Plr.TextColor3 = Color3.fromRGB(255, 255, 255)
  636. Plr.TextScaled = true
  637.  
  638. Spawner = Instance.new("Frame", MainFrame)
  639. Spawner.Name = "Spawner"
  640. Spawner.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  641. Spawner.BackgroundTransparency = 1
  642. Spawner.BorderSizePixel = 0
  643. Spawner.Size = UDim2.new(0, 375, 0, 221)
  644. Spawner.Visible = false
  645.  
  646. Pokemon = Instance.new("TextBox", Spawner)
  647. Pokemon.Name = "Pokemon2"
  648. Pokemon.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  649. Pokemon.BorderSizePixel = 0
  650. Pokemon.Position = UDim2.new(0.085, 1, 0.032, 0)
  651. Pokemon.Size = UDim2.new(0, 100, 0, 37)
  652. Pokemon.Font = Enum.Font.SourceSans
  653. Pokemon.PlaceholderText = "Pokemon"
  654. Pokemon.Text = ""
  655. Pokemon.TextColor3 = Color3.fromRGB(255, 255, 255)
  656. Pokemon.TextScaled = true
  657.  
  658. Player = Instance.new("TextBox", Spawner)
  659. Player.Name = "Player"
  660. Player.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  661. Player.BorderSizePixel = 0
  662. Player.Position = UDim2.new(0.368, 0, 0.032, 0)
  663. Player.Size = UDim2.new(0, 100, 0, 37)
  664. Player.Font = Enum.Font.SourceSans
  665. Player.PlaceholderText = "Player"
  666. Player.Text = ""
  667. Player.TextColor3 = Color3.fromRGB(255, 255, 255)
  668. Player.TextScaled = true
  669.  
  670. PCBox = Instance.new("TextBox", Spawner)
  671. PCBox.Name = "PCBox"
  672. PCBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  673. PCBox.BorderSizePixel = 0
  674. PCBox.Position = UDim2.new(1, -132, 0.032, 0)
  675. PCBox.Size = UDim2.new(0, 100, 0, 37)
  676. PCBox.Font = Enum.Font.SourceSans
  677. PCBox.PlaceholderText = "PC Box"
  678. PCBox.Text = ""
  679. PCBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  680. PCBox.TextScaled = true
  681.  
  682. Level = Instance.new("TextBox", Spawner)
  683. Level.Name = "Level"
  684. Level.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  685. Level.BorderSizePixel = 0
  686. Level.Position = UDim2.new(0.368, 0, 0.226, 0)
  687. Level.Size = UDim2.new(0, 100, 0, 37)
  688. Level.Font = Enum.Font.SourceSans
  689. Level.PlaceholderText = "Level"
  690. Level.Text = ""
  691. Level.TextColor3 = Color3.fromRGB(255, 255, 255)
  692. Level.TextSize = 21
  693.  
  694. local ShinyVal = false
  695. local AuraVal = false
  696. Frame5 = Instance.new("Frame", Spawner)
  697. Frame5.Name = "Frame5"
  698. Frame5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  699. Frame5.BackgroundTransparency = 1
  700. Frame5.Position = UDim2.new(0, 0, 0.226, 42)
  701. Frame5.Size = UDim2.new(0, 375, 0, 171)
  702.  
  703. function GetPlayer(P)
  704. for i, v in pairs(game.Players:GetPlayers()) do
  705. if string.sub(string.lower(tostring(v)), 1, string.len(P)) == string.lower(P) then
  706. return v
  707. end
  708. end
  709. end
  710.  
  711. Spawn = Instance.new("TextButton", Frame5)
  712. Spawn.Name = "Spawn"
  713. Spawn.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  714. Spawn.BorderSizePixel = 0
  715. Spawn.Position = UDim2.new(0.222, 0, 0.032, 0)
  716. Spawn.Size = UDim2.new(0, 100, 0, 37)
  717. Spawn.Font = Enum.Font.SourceSans
  718. Spawn.Text = "Spawn"
  719. Spawn.TextColor3 = Color3.fromRGB(255, 255, 255)
  720. Spawn.TextSize = 21
  721. Spawn.MouseButton1Down:connect(function()
  722. local Poke = GetPokemon(Pokemon.Text)
  723. local Lvl = tonumber(Level.Text)
  724. Accepted = 0
  725. if Lvl == nil then
  726. Lvl = 5
  727. end
  728. local P = game.Players.LocalPlayer
  729. if Player.Text ~= "" then
  730. P = GetPlayer(Player.Text)
  731. end
  732. local Par = P.PokemonParty
  733. if PCBox.Text ~= "" and P.PC["Box "..PCBox.Text] ~= nil then
  734. Par = P.PC["Box "..PCBox.Text]
  735. end
  736. if Poke ~= nil and P ~= nil then
  737. SpawnPokemon(Poke, Lvl, Par, ShinyVal, AuraVal)
  738. end
  739. end)
  740. local Spawning = false
  741. SpawnBox = Instance.new("TextButton", Frame5)
  742. SpawnBox.Name = "SpawnBox"
  743. SpawnBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  744. SpawnBox.BorderSizePixel = 0
  745. SpawnBox.Position = UDim2.new(0.222, 0, 0.249, 0)
  746. SpawnBox.Size = UDim2.new(0, 100, 0, 37)
  747. SpawnBox.Font = Enum.Font.SourceSans
  748. SpawnBox.Text = "SpawnBox"
  749. SpawnBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  750. SpawnBox.TextSize = 21
  751. SpawnBox.MouseButton1Down:connect(function()
  752. Spawning = not Spawning
  753. SpawnBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  754. Accepted = 0
  755. StartingNumber = #SpawnPlace:GetChildren()
  756. local Stuck = false
  757. local Poke = GetPokemon(Pokemon.Text)
  758. local Lvl = tonumber(Level.Text)
  759. if Lvl == nil then
  760. Lvl = 5
  761. end
  762. local P = game.Players.LocalPlayer
  763. if Player.Text ~= "" then
  764. P = GetPlayer(Player.Text)
  765. end
  766. local Par = nil
  767. if PCBox.Text ~= "" and P.PC["Box "..PCBox.Text] ~= nil then
  768. Par = P.PC["Box "..PCBox.Text]
  769. end
  770. if Spawning == true then
  771. SpawnBox.BackgroundColor3 = Color3.fromRGB(35, 110, 35)
  772. Accepted = #Par:GetChildren()
  773. while Spawning == true do
  774. print("Spawning")
  775. if Accepted >= 60 then
  776. Spawning = false
  777. SpawnBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  778. break
  779. end
  780. for i = 1, 300 do
  781. spawn(function()
  782. if SpawnPokemon(Poke, Lvl, Par, ShinyVal, AuraVal) == false then
  783. Spawning = false
  784. SpawnBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  785. return
  786. end
  787. end)
  788. end
  789. repeat
  790. wait()
  791. until #SpawnPlace:GetChildren() >= 300+StartingNumber
  792. local Numbers = GetSlot(Par, true)
  793. for i, v in pairs(SpawnPlace:GetChildren()) do
  794. if v.ClassName == "Configuration" and (ShinyVal == true and v:FindFirstChild("Shiny") and v.Shiny.Value == true or AuraVal == true and v:FindFirstChild("Aura")) or (ShinyVal == false and AuraVal == false) then
  795. local moved = false
  796. for a = 1, 60 do
  797. if Numbers[a] ~= nil then
  798. Numbers[a] = nil
  799. Accepted = Accepted + 1
  800. moved = true
  801. spawn(function()
  802. print("Moving to Position "..tostring(a))
  803. Rep.REvents.PC.ChangePos:InvokeServer(v, a)
  804. ChangeParent(v, Par)
  805. end)
  806. break
  807. end
  808. end
  809. if moved == false then
  810. spawn(function()
  811. repeat
  812. ChangeParent(v, nil)
  813. wait(0.2)
  814. until v.Parent == nil
  815. end)
  816. end
  817. elseif v.ClassName == "Configuration" then
  818. spawn(function()
  819. repeat
  820. ChangeParent(v, nil)
  821. wait(0.2)
  822. until v.Parent == nil
  823. end)
  824. end
  825. end
  826. repeat
  827. wait()
  828. until #SpawnPlace:GetChildren() == StartingNumber
  829. end
  830. print("Done")
  831. end
  832. end)
  833.  
  834. Toggle1 = Instance.new("TextButton", Frame5)
  835. Toggle1.Name = "Toggle1"
  836. Toggle1.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  837. Toggle1.BorderSizePixel = 0
  838. Toggle1.Position = UDim2.new(0.222, 0, 0.452, 0)
  839. Toggle1.Size = UDim2.new(0, 100, 0, 37)
  840. Toggle1.Font = Enum.Font.SourceSans
  841. Toggle1.Text = "Shiny"
  842. Toggle1.TextColor3 = Color3.fromRGB(255, 255, 255)
  843. Toggle1.TextSize = 21
  844. Toggle1.MouseButton1Down:connect(function()
  845. ShinyVal = not ShinyVal
  846. Toggle1.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  847. if ShinyVal == true then
  848. Toggle1.BackgroundColor3 = Color3.fromRGB(35, 110, 35)
  849. end
  850. end)
  851.  
  852. UIGridLayout3 = Instance.new("UIGridLayout", Frame5)
  853. UIGridLayout3.Name = "UIGridLayout3"
  854. UIGridLayout3.HorizontalAlignment = Enum.HorizontalAlignment.Center
  855. UIGridLayout3.SortOrder = Enum.SortOrder.LayoutOrder
  856. UIGridLayout3.CellSize = UDim2.new(0, 100, 0, 37)
  857.  
  858. Toggle2 = Instance.new("TextButton", Frame5)
  859. Toggle2.Name = "Toggle2"
  860. Toggle2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  861. Toggle2.BorderSizePixel = 0
  862. Toggle2.Position = UDim2.new(0.222, 0, 0.452, 0)
  863. Toggle2.Size = UDim2.new(0, 100, 0, 37)
  864. Toggle2.Font = Enum.Font.SourceSans
  865. Toggle2.Text = "Aura"
  866. Toggle2.TextColor3 = Color3.fromRGB(255, 255, 255)
  867. Toggle2.TextSize = 21
  868. Toggle2.MouseButton1Down:connect(function()
  869. AuraVal = not AuraVal
  870. Toggle2.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  871. if AuraVal == true then
  872. Toggle2.BackgroundColor3 = Color3.fromRGB(35, 110, 35)
  873. end
  874. end)
  875.  
  876. ClearBox = Instance.new("TextButton", Frame5)
  877. ClearBox.Name = "ClearBox"
  878. ClearBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  879. ClearBox.BorderSizePixel = 0
  880. ClearBox.Position = UDim2.new(0.222, 0, 0.452, 0)
  881. ClearBox.Size = UDim2.new(0, 100, 0, 37)
  882. ClearBox.Font = Enum.Font.SourceSans
  883. ClearBox.Text = "Clear Box - Local"
  884. ClearBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  885. ClearBox.TextSize = 16
  886. ClearBox.MouseButton1Down:connect(function()
  887. if PCBox.Text ~= "" and game.Players.LocalPlayer.PC:FindFirstChild("Box "..PCBox.Text) then
  888. for i, v in pairs(game.Players.LocalPlayer.PC["Box "..PCBox.Text]:GetChildren()) do
  889. spawn(function()
  890. ChangeParent(v, nil)
  891. end)
  892. end
  893. end
  894. end)
  895.  
  896. Credits = Instance.new("Frame", MainFrame)
  897. Credits.Name = "Credits"
  898. Credits.BackgroundColor3 = Color3.fromRGB(54, 54, 54)
  899. Credits.BorderSizePixel = 0
  900. Credits.Position = UDim2.new(0.384, 0, 0.235, 0)
  901. Credits.Size = UDim2.new(0, 182, 0, 84)
  902. Credits.Visible = false
  903. Credits.ClipsDescendants = true
  904.  
  905. TextLabel = Instance.new("TextLabel", Credits)
  906. TextLabel.Name = "TextLabel"
  907. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  908. TextLabel.BackgroundTransparency = 1
  909. TextLabel.Position = UDim2.new(0, 0, 0.057, 0)
  910. TextLabel.Size = UDim2.new(0, 182, 0, 34)
  911. TextLabel.Font = Enum.Font.SourceSans
  912. TextLabel.Text = "Made By Victini"
  913. TextLabel.TextColor3 = Color3.fromRGB(255, 129, 56)
  914. TextLabel.TextSize = 21
  915.  
  916. TextLabel2 = Instance.new("TextLabel", Credits)
  917. TextLabel2.Name = "TextLabel2"
  918. TextLabel2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  919. TextLabel2.BackgroundTransparency = 1
  920. TextLabel2.Position = UDim2.new(0.126, 0, 0.681, 0)
  921. TextLabel2.Size = UDim2.new(0, 135, 0, 26)
  922. TextLabel2.Font = Enum.Font.SourceSans
  923. TextLabel2.Text = "Soma: Gui Dev"
  924. TextLabel2.TextColor3 = Color3.fromRGB(255, 147, 23)
  925. TextLabel2.TextSize = 15
  926.  
  927. function OpenClose()
  928. Tabs.Visible = not Tabs.Visible
  929. OpenTab.Text = "<"
  930. if Tabs.Visible == false then
  931. OpenTab.Text = ">"
  932. end
  933. end
  934.  
  935. OpenTab = Instance.new("TextButton", Frame)
  936. OpenTab.Name = "OpenTab"
  937. OpenTab.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  938. OpenTab.BorderSizePixel = 0
  939. OpenTab.Size = UDim2.new(0, 49, 0, 37)
  940. OpenTab.Font = Enum.Font.SourceSans
  941. OpenTab.Text = ">"
  942. OpenTab.TextColor3 = Color3.fromRGB(255, 255, 255)
  943. OpenTab.TextSize = 21
  944. OpenTab.MouseButton1Down:connect(function()
  945. OpenClose()
  946. end)
  947.  
  948. Close = Instance.new("TextButton", Frame)
  949. Close.Name = "Close"
  950. Close.BackgroundColor3 = Color3.fromRGB(43, 43, 43)
  951. Close.BorderSizePixel = 0
  952. Close.Position = UDim2.new(0.869, 0, 0, 0)
  953. Close.Size = UDim2.new(0, 49, 0, 37)
  954. Close.Font = Enum.Font.SourceSans
  955. Close.Text = "X"
  956. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  957. Close.TextSize = 21
  958. Close.MouseButton1Down:connect(function()
  959. ScreenGui:remove()
  960. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement