Advertisement
Bkbeast

Untitled

Nov 7th, 2021
6,246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.85 KB | None | 0 0
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/si1nnx/psxx/main/g"))()
  2.  
  3. local Library = require(game.ReplicatedStorage:WaitForChild("Framework"):WaitForChild("Library"))
  4. local tt = os.clock()
  5. local p = require(game:GetService("ReplicatedStorage").Framework.Modules.Client["5 | PetUI"])
  6.  
  7. local stars = {
  8. Rare = 1,
  9. Epic = 2,
  10. Legendary = 2,
  11. Mythical = 1,
  12. Exclusive = 1
  13. }
  14. function getidx(s)
  15. local idx = 0
  16. local inv = game:GetService("Players").LocalPlayer.PlayerGui.Inventory
  17. local pets = inv.Frame.Main.Pets
  18. for i, v in pairs(pets:GetChildren()) do
  19. if v:IsA("TextButton") and v.Name ~= "Pet" and v.Name ~= "Empty" then
  20. local petstuff, player = Library.PetCmds.Get(v.Name)
  21. if v.Equipped.Visible == true or petstuff.s > s then
  22. idx = idx + 1
  23. end
  24. end
  25. end
  26. return idx
  27. end
  28. function geteidx(s)
  29. local inv = game:GetService("Players").LocalPlayer.PlayerGui.Inventory
  30. local pets = inv.Frame.Main.Pets
  31. local idx = 0
  32. for i, v in pairs(pets:GetChildren()) do
  33. if v:IsA("TextButton") and v.Name ~= "Pet" and v.Name ~= "Empty" then
  34. local petstuff, player = Library.PetCmds.Get(v.Name)
  35. if v.Equipped.Visible == true then
  36. if petstuff.s >= s then
  37. idx = idx + 1
  38. end
  39. end
  40. end
  41. end
  42. return idx
  43. end
  44. function getIdbyPet(pet)
  45. local s = nil
  46. for i,v in pairs(Library.Directory.Pets) do
  47.  
  48. if v.name == pet then
  49. s = i
  50. end
  51. end
  52. return s
  53. end
  54. function getequipped()
  55. local o = 0
  56. for i,v in pairs(Library.Save.Get().Pets) do
  57. if v.e then o = o + 1 end
  58. end
  59. return o
  60. end
  61. function add(pet, t,cs)
  62. local inv = game:GetService("Players").LocalPlayer.PlayerGui.Inventory
  63. local col = Color3.fromRGB(0, 0, 0)
  64.  
  65. if inv.Frame.Main.Pets:FindFirstChild("Empty") then
  66.  
  67. local rand = Random.new()
  68. local p = Library.Directory.Pets[pet] or Library.Directory.Pets["1"]
  69. local e = Library.Assets.UI.Inventory.Pet:Clone()
  70. e.Parent = inv.Frame.Main.Pets
  71. if p.rarity == "Legendary" or p.rarity == "Mythical" or p.rarity == "Exclusive" then
  72. local ee = Library.Assets.UI.Raritys:FindFirstChild(p.rarity):Clone()
  73. ee.Parent = e.RarityGradient
  74. e.RarityGradient.Visible = true
  75. e.BackgroundTransparency = 1
  76. local eee = e.Level:FindFirstChildOfClass("UIStroke")
  77. eee.Color = Color3.new(1, 1, 1)
  78. local n = ee:Clone()
  79. n.Parent = eee
  80. else
  81. e.Level:FindFirstChildOfClass("UIStroke").Thickness = 4
  82. end
  83. if stars[p.rarity] then
  84. local sg = Library.Assets.UI.Inventory.StarGradient
  85. for i = 1, stars[p.rarity] do
  86. local s = Library.Assets.UI.Inventory.Star:Clone()
  87. if p.rarity == "Mythical" or p.rarity == "Exclusive" then
  88. s.Image = "rbxassetid://7112773308"
  89. end
  90. sg:Clone().Parent = s
  91. s.Parent = e.Stars
  92. end
  93. e.Stars.Visible = true
  94. end
  95. if p.rarity == "Mythical" or p.rarity == "Exclusive" then
  96. local function eeeee()
  97. local sparkle = Library.Assets.UI.Inventory.Sparkle:Clone()
  98. sparkle.Position = UDim2.new(rand:NextNumber(), 0, rand:NextNumber(), 0)
  99. sparkle.Size = UDim2.new(0, 0, 0, 0)
  100. sparkle.Parent = e
  101. local nextnum = rand:NextNumber(0.2, 0.35)
  102. Library.Functions.FastTween(
  103. sparkle,
  104. {
  105. Size = UDim2.new(nextnum, 0, nextnum, 0)
  106. },
  107. {rand:NextNumber(1.5, 2.75), "Quad", "Out"}
  108. ).Completed:Connect(
  109. function()
  110. Library.Functions.FastTween(
  111. sparkle,
  112. {
  113. Size = UDim2.new(0, 0, 0, 0)
  114. },
  115. {rand:NextNumber(0.75, 1.25), "Sine", "InOut"}
  116. ).Completed:Wait()
  117. sparkle:Destroy()
  118. end
  119. )
  120. end
  121. coroutine.wrap(
  122. function()
  123. while e and e.Parent do
  124. eeeee()
  125. wait(rand:NextNumber(1, 2.5))
  126. end
  127. end
  128. )()
  129. end
  130.  
  131. local s = math.random(p.strengthMin, p.strengthMax)
  132. s = tostring(s):gsub("-", "")
  133. s = tonumber(s)
  134. if p.rarity == "Exclusive" and Library.Directory.Products[p.name] and pet ~= "157" then
  135. s = Library.Directory.Products[p.name].PetData.extraData.s
  136. end
  137.  
  138. if t == "Golden" then
  139. s = s * 3
  140. end
  141. if t == "Rainbow" then
  142. s = s * 7
  143. end
  144. if t == "Dark Matter" then
  145. s = s * 20
  146. end
  147. if pet ~= "157" and pet ~= "225" then
  148. e.Level.Text = Library.Functions.NumberShorten(s)
  149. else
  150. e.Level.Text = "???"
  151. end
  152. local index = getidx(s)
  153. if cs then s = cs end
  154. local im = p.thumbnail
  155. if t == "Normal" then
  156. im = p.thumbnail
  157. elseif t == "Golden" then
  158. im = p.goldenThumbnail
  159. elseif t == "Dark Matter" then
  160. im = p.darkMatterThumbnail
  161. end
  162. e.PetIcon.Image = im
  163. e.MouseEnter:Connect(
  164. function()
  165. Library.Audio.Play("rbxassetid://6907626084", script, 1, 0.2)
  166. e.Size = UDim2.new(0,110,0,110)
  167. e.BackgroundColor3 = Color3.fromRGB(69, 239, 69)
  168. e.RarityGradient.Size = UDim2.new(0,110,0,110)
  169. e.PetIcon.Size = UDim2.new(0,110,0,110)
  170. end
  171. )
  172. e.MouseLeave:Connect(function()
  173. e.Size = UDim2.new(0,100,0,100)
  174. e.BackgroundColor3 = Color3.fromRGB(59, 177, 252)
  175. e.RarityGradient.Size = UDim2.new(0,100,0,100)
  176. e.PetIcon.Size = UDim2.new(0,100,0,100)
  177. end)
  178. e.SelectionGained:Connect(
  179. function()
  180. Library.Audio.Play("rbxassetid://6907626084", script, 1, 0.2)
  181. end
  182. )
  183. e.MouseButton1Down:Connect(function()
  184. if e.Equipped.Visible == true then e.Equipped.Visible = false; e.LayoutOrder = getidx(s) elseif e.Equipped.Visible == false then e.Equipped.Visible = true; e.LayoutOrder = geteidx(s) end
  185. e.Size = UDim2.new(0,90,0,90)
  186. e.RarityGradient.Size = UDim2.new(0,90,0,90)
  187. e.PetIcon.Size = UDim2.new(0,90,0,90)
  188. end)
  189. e.MouseButton1Up:Connect(function()
  190. e.Size = UDim2.new(0,105,0,105)
  191. e.RarityGradient.Size = UDim2.new(0,105,0,105)
  192. e.PetIcon.Size = UDim2.new(0,105,0,105)
  193. if getequipped() < 20 then
  194. equipPet(pet,t)
  195. end
  196. end)
  197.  
  198. e.LayoutOrder = index
  199. if pet == "157" then
  200. e.LayoutOrder = getidx(math.huge)
  201. end
  202. inv.Frame.Main.Pets:FindFirstChild("Empty"):Destroy()
  203. if t == "Rainbow" then
  204. coroutine.wrap(
  205. function()
  206. while true do
  207. -- col = Color3.fromHSV((os.clock() - tt) / 2 % 1, 1, 1)
  208. local p = require(game:GetService("ReplicatedStorage").Framework.Modules.Client["5 | PetUI"])
  209. e.PetIcon.ImageColor3 = debug.getupvalue(p.Create,4)
  210. Library.RenderStepped()
  211. end
  212. end
  213. )()
  214. end
  215. end
  216. end
  217.  
  218.  
  219. local Main = Instance.new("ScreenGui")
  220. local Frame = Instance.new("Frame")
  221. local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint")
  222. local Input = Instance.new("TextBox")
  223. local UICorner = Instance.new("UICorner")
  224. local Title = Instance.new("TextLabel")
  225. local UICorner_2 = Instance.new("UICorner")
  226. local bg = Instance.new("Frame")
  227. local UICorner_3 = Instance.new("UICorner")
  228. local bg_2 = Instance.new("Frame")
  229. local UICorner_4 = Instance.new("UICorner")
  230. local normal = Instance.new("ImageButton")
  231. local TextLabel = Instance.new("TextLabel")
  232. local UIPadding = Instance.new("UIPadding")
  233. local uistroke = Instance.new("Frame")
  234. local UICorner_5 = Instance.new("UICorner")
  235. local Close = Instance.new("ImageButton")
  236. local Title_2 = Instance.new("TextLabel")
  237. local uistroke_2 = Instance.new("TextLabel")
  238. local uistroke_3 = Instance.new("TextLabel")
  239. local uistroke_4 = Instance.new("TextLabel")
  240. local uistroke_5 = Instance.new("TextLabel")
  241. local uistroke_6 = Instance.new("TextLabel")
  242. local uistroke_7 = Instance.new("TextLabel")
  243. local uistroke_8 = Instance.new("TextLabel")
  244. local uistroke_9 = Instance.new("TextLabel")
  245. local golden = Instance.new("ImageButton")
  246. local TextLabel_2 = Instance.new("TextLabel")
  247. local UIPadding_2 = Instance.new("UIPadding")
  248. local rainbow = Instance.new("ImageButton")
  249. local TextLabel_3 = Instance.new("TextLabel")
  250. local UIPadding_3 = Instance.new("UIPadding")
  251. local dm = Instance.new("ImageButton")
  252. local TextLabel_4 = Instance.new("TextLabel")
  253. local UIPadding_4 = Instance.new("UIPadding")
  254. local UIPadding_5 = Instance.new("UIPadding")
  255.  
  256. --Properties:
  257.  
  258. Main.Name = "Main"
  259. Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  260. Main.ResetOnSpawn = false
  261. Main.Enabled = false
  262. Frame.Parent = Main
  263. Frame.Active = true
  264. Frame.AnchorPoint = Vector2.new(0.5, 0.5)
  265. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  266. Frame.BorderSizePixel = 0
  267. Frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  268. Frame.Size = UDim2.new(0.224999994, 300, 0.800000012, 0)
  269. Frame.ZIndex = 3
  270.  
  271. UIAspectRatioConstraint.Parent = Frame
  272. UIAspectRatioConstraint.AspectRatio = 1.700
  273.  
  274. Input.Name = "Input"
  275. Input.Parent = Frame
  276. Input.AnchorPoint = Vector2.new(0.5, 0.5)
  277. Input.BackgroundColor3 = Color3.fromRGB(206, 206, 206)
  278. Input.BorderSizePixel = 0
  279. Input.Position = UDim2.new(0.5, 0, 0.5, 0)
  280. Input.Size = UDim2.new(0.800000012, 0, 0.165000007, 0)
  281. Input.ZIndex = 5
  282. Input.Font = Enum.Font.FredokaOne
  283. Input.PlaceholderColor3 = Color3.fromRGB(157, 157, 157)
  284. Input.PlaceholderText = "Empty"
  285. Input.Text = ""
  286. Input.TextColor3 = Color3.fromRGB(255, 255, 255)
  287. Input.TextScaled = true
  288. Input.TextSize = 18.000
  289. Input.TextWrapped = true
  290.  
  291. UICorner.CornerRadius = UDim.new(1, 0)
  292. UICorner.Parent = Input
  293.  
  294. Title.Name = "Title"
  295. Title.Parent = Frame
  296. Title.AnchorPoint = Vector2.new(0.5, 0)
  297. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  298. Title.BackgroundTransparency = 1.000
  299. Title.BorderSizePixel = 0
  300. Title.Position = UDim2.new(0.5, 0, 0.100000001, 0)
  301. Title.Size = UDim2.new(0.850000024, 0, 0.200000003, 0)
  302. Title.ZIndex = 4
  303. Title.Font = Enum.Font.FredokaOne
  304. Title.Text = "Pet Simulator X Fake Spawner"
  305. Title.TextColor3 = Color3.fromRGB(59, 177, 252)
  306. Title.TextScaled = true
  307. Title.TextSize = 14.000
  308. Title.TextWrapped = true
  309.  
  310. UICorner_2.CornerRadius = UDim.new(0.100000001, 0)
  311. UICorner_2.Parent = Frame
  312.  
  313. bg.Name = "bg"
  314. bg.Parent = Frame
  315. bg.AnchorPoint = Vector2.new(0.5, 0.5)
  316. bg.BackgroundColor3 = Color3.fromRGB(28, 69, 82)
  317. bg.BorderSizePixel = 0
  318. bg.Position = UDim2.new(0.5, 0, 0.522459805, 0)
  319. bg.Rotation = -4.500
  320. bg.Size = UDim2.new(1, 0, 1.00508034, 0)
  321. bg.ZIndex = -4
  322.  
  323. UICorner_3.CornerRadius = UDim.new(0.100000001, 0)
  324. UICorner_3.Parent = bg
  325.  
  326. bg_2.Name = "bg"
  327. bg_2.Parent = Frame
  328. bg_2.AnchorPoint = Vector2.new(0.5, 0.5)
  329. bg_2.BackgroundColor3 = Color3.fromRGB(59, 177, 252)
  330. bg_2.BorderSizePixel = 0
  331. bg_2.Position = UDim2.new(0.484144419, 0, 0.522459805, 0)
  332. bg_2.Rotation = -2.000
  333. bg_2.Size = UDim2.new(1.00171137, 0, 1.00508034, 0)
  334. bg_2.ZIndex = -3
  335.  
  336. UICorner_4.CornerRadius = UDim.new(0.100000001, 0)
  337. UICorner_4.Parent = bg_2
  338.  
  339. normal.Name = "normal"
  340. normal.Parent = Frame
  341. normal.AnchorPoint = Vector2.new(0.5, 0.5)
  342. normal.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  343. normal.BackgroundTransparency = 1.000
  344. normal.BorderSizePixel = 0
  345. normal.Position = UDim2.new(0.282212645, 0, 0.698225677, 0)
  346. normal.Size = UDim2.new(0.41525358, 0, 0.186612859, 0)
  347. normal.ZIndex = 6
  348. normal.AutoButtonColor = false
  349. normal.Image = "rbxassetid://6869680115"
  350. normal.ScaleType = Enum.ScaleType.Slice
  351. normal.SliceCenter = Rect.new(55, 55, 95, 95)
  352. normal.MouseButton1Click:Connect(function()
  353. add(getIdbyPet(Input.Text),"Normal")
  354. Main.Enabled = false
  355. coroutine.wrap(function()
  356. wait(2)
  357. Main.Enabled = true
  358. end)()
  359. end)
  360. TextLabel.Parent = normal
  361. TextLabel.AnchorPoint = Vector2.new(0.5, 0)
  362. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  363. TextLabel.BackgroundTransparency = 1.000
  364. TextLabel.BorderSizePixel = 0
  365. TextLabel.Position = UDim2.new(0.5, 0, 0, 0)
  366. TextLabel.Size = UDim2.new(0.899999976, 0, 1, 0)
  367. TextLabel.ZIndex = 7
  368. TextLabel.Font = Enum.Font.FredokaOne
  369. TextLabel.Text = "SPAWN NORMAL!"
  370. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  371. TextLabel.TextScaled = true
  372. TextLabel.TextSize = 14.000
  373. TextLabel.TextStrokeColor3 = Color3.fromRGB(17, 58, 72)
  374. TextLabel.TextWrapped = true
  375.  
  376. UIPadding.Parent = normal
  377. UIPadding.PaddingBottom = UDim.new(0.100000001, 0)
  378. UIPadding.PaddingLeft = UDim.new(0.0250000004, 0)
  379. UIPadding.PaddingRight = UDim.new(0.0250000004, 0)
  380. UIPadding.PaddingTop = UDim.new(0.100000001, 0)
  381.  
  382. uistroke.Name = "ui-stroke"
  383. uistroke.Parent = Frame
  384. uistroke.AnchorPoint = Vector2.new(0.5, 0.5)
  385. uistroke.BackgroundColor3 = Color3.fromRGB(28, 69, 82)
  386. uistroke.BorderSizePixel = 0
  387. uistroke.Position = UDim2.new(0.5, 0, 0.5, 0)
  388. uistroke.Size = UDim2.new(1.01989734, 0, 1.03382552, 0)
  389. uistroke.ZIndex = 0
  390.  
  391. UICorner_5.CornerRadius = UDim.new(0.100000001, 0)
  392. UICorner_5.Parent = uistroke
  393.  
  394. Close.Name = "Close"
  395. Close.Parent = Frame
  396. Close.AnchorPoint = Vector2.new(0.5, 0.5)
  397. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  398. Close.BackgroundTransparency = 1.000
  399. Close.BorderSizePixel = 0
  400. Close.Position = UDim2.new(0.978271306, 0, 0.0349329598, 0)
  401. Close.Rotation = -5.000
  402. Close.Size = UDim2.new(0.237457395, 0, 0.308865964, 0)
  403. Close.ZIndex = 50
  404. Close.AutoButtonColor = false
  405. Close.Image = "rbxassetid://4456763565"
  406. Close.ScaleType = Enum.ScaleType.Fit
  407. Close.MouseButton1Click:Connect(function()
  408. Main.Enabled = false
  409. end)
  410. Title_2.Name = "Title"
  411. Title_2.Parent = Frame
  412. Title_2.AnchorPoint = Vector2.new(0, 1)
  413. Title_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  414. Title_2.BackgroundTransparency = 1.000
  415. Title_2.BorderSizePixel = 0
  416. Title_2.Position = UDim2.new(-0.12274529, 0, 0.161407083, -12)
  417. Title_2.Rotation = -20.000
  418. Title_2.Size = UDim2.new(0.450881392, 0, 0.186213493, 0)
  419. Title_2.ZIndex = 50
  420. Title_2.Font = Enum.Font.FredokaOne
  421. Title_2.Text = "Sub 2 BKProsYT"
  422. Title_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  423. Title_2.TextScaled = true
  424. Title_2.TextSize = 18.000
  425. Title_2.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  426. Title_2.TextStrokeTransparency = 0.000
  427. Title_2.TextWrapped = true
  428. Title_2.TextXAlignment = Enum.TextXAlignment.Left
  429. Title_2.TextYAlignment = Enum.TextYAlignment.Bottom
  430.  
  431. uistroke_2.Name = "ui-stroke"
  432. uistroke_2.Parent = Title_2
  433. uistroke_2.AnchorPoint = Vector2.new(0.5, 0.5)
  434. uistroke_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  435. uistroke_2.BackgroundTransparency = 1.000
  436. uistroke_2.BorderSizePixel = 0
  437. uistroke_2.Position = UDim2.new(0.507989287, 0, 0.484755903, 0)
  438. uistroke_2.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  439. uistroke_2.ZIndex = 49
  440. uistroke_2.Font = Enum.Font.FredokaOne
  441. uistroke_2.Text = "Sub 2 BKProsYT"
  442. uistroke_2.TextColor3 = Color3.fromRGB(28, 69, 82)
  443. uistroke_2.TextScaled = true
  444. uistroke_2.TextSize = 18.000
  445. uistroke_2.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  446. uistroke_2.TextStrokeTransparency = 0.000
  447. uistroke_2.TextWrapped = true
  448. uistroke_2.TextXAlignment = Enum.TextXAlignment.Left
  449. uistroke_2.TextYAlignment = Enum.TextYAlignment.Bottom
  450.  
  451. uistroke_3.Name = "ui-stroke"
  452. uistroke_3.Parent = Title_2
  453. uistroke_3.AnchorPoint = Vector2.new(0.5, 0.5)
  454. uistroke_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  455. uistroke_3.BackgroundTransparency = 1.000
  456. uistroke_3.BorderSizePixel = 0
  457. uistroke_3.Position = UDim2.new(0.514091611, 0, 0.552252531, 0)
  458. uistroke_3.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  459. uistroke_3.ZIndex = 49
  460. uistroke_3.Font = Enum.Font.FredokaOne
  461. uistroke_3.Text = "Sub 2 BKProsYT"
  462. uistroke_3.TextColor3 = Color3.fromRGB(28, 69, 82)
  463. uistroke_3.TextScaled = true
  464. uistroke_3.TextSize = 18.000
  465. uistroke_3.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  466. uistroke_3.TextStrokeTransparency = 0.000
  467. uistroke_3.TextWrapped = true
  468. uistroke_3.TextXAlignment = Enum.TextXAlignment.Left
  469. uistroke_3.TextYAlignment = Enum.TextYAlignment.Bottom
  470.  
  471. uistroke_4.Name = "ui-stroke"
  472. uistroke_4.Parent = Title_2
  473. uistroke_4.AnchorPoint = Vector2.new(0.5, 0.5)
  474. uistroke_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  475. uistroke_4.BackgroundTransparency = 1.000
  476. uistroke_4.BorderSizePixel = 0
  477. uistroke_4.Position = UDim2.new(0.501887143, 0, 0.417260498, 0)
  478. uistroke_4.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  479. uistroke_4.ZIndex = 49
  480. uistroke_4.Font = Enum.Font.FredokaOne
  481. uistroke_4.Text = "Sub 2 BKProsYT"
  482. uistroke_4.TextColor3 = Color3.fromRGB(28, 69, 82)
  483. uistroke_4.TextScaled = true
  484. uistroke_4.TextSize = 18.000
  485. uistroke_4.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  486. uistroke_4.TextStrokeTransparency = 0.000
  487. uistroke_4.TextWrapped = true
  488. uistroke_4.TextXAlignment = Enum.TextXAlignment.Left
  489. uistroke_4.TextYAlignment = Enum.TextYAlignment.Bottom
  490.  
  491. uistroke_5.Name = "ui-stroke"
  492. uistroke_5.Parent = Title_2
  493. uistroke_5.AnchorPoint = Vector2.new(0.5, 0.5)
  494. uistroke_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  495. uistroke_5.BackgroundTransparency = 1.000
  496. uistroke_5.BorderSizePixel = 0
  497. uistroke_5.Position = UDim2.new(0.489487946, 0, 0.519170821, 0)
  498. uistroke_5.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  499. uistroke_5.ZIndex = 49
  500. uistroke_5.Font = Enum.Font.FredokaOne
  501. uistroke_5.Text = "Sub 2 BKProsYT"
  502. uistroke_5.TextColor3 = Color3.fromRGB(28, 69, 82)
  503. uistroke_5.TextScaled = true
  504. uistroke_5.TextSize = 18.000
  505. uistroke_5.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  506. uistroke_5.TextStrokeTransparency = 0.000
  507. uistroke_5.TextWrapped = true
  508. uistroke_5.TextXAlignment = Enum.TextXAlignment.Left
  509. uistroke_5.TextYAlignment = Enum.TextYAlignment.Bottom
  510.  
  511. uistroke_6.Name = "ui-stroke"
  512. uistroke_6.Parent = Title_2
  513. uistroke_6.AnchorPoint = Vector2.new(0.5, 0.5)
  514. uistroke_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  515. uistroke_6.BackgroundTransparency = 1.000
  516. uistroke_6.BorderSizePixel = 0
  517. uistroke_6.Position = UDim2.new(0.495589823, 0, 0.586667418, 0)
  518. uistroke_6.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  519. uistroke_6.ZIndex = 49
  520. uistroke_6.Font = Enum.Font.FredokaOne
  521. uistroke_6.Text = "Sub 2 BKProsYT"
  522. uistroke_6.TextColor3 = Color3.fromRGB(28, 69, 82)
  523. uistroke_6.TextScaled = true
  524. uistroke_6.TextSize = 18.000
  525. uistroke_6.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  526. uistroke_6.TextStrokeTransparency = 0.000
  527. uistroke_6.TextWrapped = true
  528. uistroke_6.TextXAlignment = Enum.TextXAlignment.Left
  529. uistroke_6.TextYAlignment = Enum.TextYAlignment.Bottom
  530.  
  531. uistroke_7.Name = "ui-stroke"
  532. uistroke_7.Parent = Title_2
  533. uistroke_7.AnchorPoint = Vector2.new(0.5, 0.5)
  534. uistroke_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  535. uistroke_7.BackgroundTransparency = 1.000
  536. uistroke_7.BorderSizePixel = 0
  537. uistroke_7.Position = UDim2.new(0.483385712, 0, 0.451675415, 0)
  538. uistroke_7.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  539. uistroke_7.ZIndex = 49
  540. uistroke_7.Font = Enum.Font.FredokaOne
  541. uistroke_7.Text = "Sub 2 BKProsYT"
  542. uistroke_7.TextColor3 = Color3.fromRGB(28, 69, 82)
  543. uistroke_7.TextScaled = true
  544. uistroke_7.TextSize = 18.000
  545. uistroke_7.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  546. uistroke_7.TextStrokeTransparency = 0.000
  547. uistroke_7.TextWrapped = true
  548. uistroke_7.TextXAlignment = Enum.TextXAlignment.Left
  549. uistroke_7.TextYAlignment = Enum.TextYAlignment.Bottom
  550.  
  551. uistroke_8.Name = "ui-stroke"
  552. uistroke_8.Parent = Title_2
  553. uistroke_8.AnchorPoint = Vector2.new(0.5, 0.5)
  554. uistroke_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  555. uistroke_8.BackgroundTransparency = 1.000
  556. uistroke_8.BorderSizePixel = 0
  557. uistroke_8.Position = UDim2.new(0.492636502, 0, 0.434467614, 0)
  558. uistroke_8.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  559. uistroke_8.ZIndex = 49
  560. uistroke_8.Font = Enum.Font.FredokaOne
  561. uistroke_8.Text = "Sub 2 BKProsYT"
  562. uistroke_8.TextColor3 = Color3.fromRGB(28, 69, 82)
  563. uistroke_8.TextScaled = true
  564. uistroke_8.TextSize = 18.000
  565. uistroke_8.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  566. uistroke_8.TextStrokeTransparency = 0.000
  567. uistroke_8.TextWrapped = true
  568. uistroke_8.TextXAlignment = Enum.TextXAlignment.Left
  569. uistroke_8.TextYAlignment = Enum.TextYAlignment.Bottom
  570.  
  571. uistroke_9.Name = "ui-stroke"
  572. uistroke_9.Parent = Title_2
  573. uistroke_9.AnchorPoint = Vector2.new(0.5, 0.5)
  574. uistroke_9.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  575. uistroke_9.BackgroundTransparency = 1.000
  576. uistroke_9.BorderSizePixel = 0
  577. uistroke_9.Position = UDim2.new(0.504840851, 0, 0.569459856, 0)
  578. uistroke_9.Size = UDim2.new(0.997370422, 0, 1.00000012, 0)
  579. uistroke_9.ZIndex = 49
  580. uistroke_9.Font = Enum.Font.FredokaOne
  581. uistroke_9.Text = "Sub 2 BKProsYT"
  582. uistroke_9.TextColor3 = Color3.fromRGB(28, 69, 82)
  583. uistroke_9.TextScaled = true
  584. uistroke_9.TextSize = 18.000
  585. uistroke_9.TextStrokeColor3 = Color3.fromRGB(28, 69, 82)
  586. uistroke_9.TextStrokeTransparency = 0.000
  587. uistroke_9.TextWrapped = true
  588. uistroke_9.TextXAlignment = Enum.TextXAlignment.Left
  589. uistroke_9.TextYAlignment = Enum.TextYAlignment.Bottom
  590.  
  591. golden.Name = "golden"
  592. golden.Parent = Frame
  593. golden.AnchorPoint = Vector2.new(0.5, 0.5)
  594. golden.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  595. golden.BackgroundTransparency = 1.000
  596. golden.BorderSizePixel = 0
  597. golden.Position = UDim2.new(0.692364752, 0, 0.698225677, 0)
  598. golden.Size = UDim2.new(0.41525358, 0, 0.186612859, 0)
  599. golden.ZIndex = 6
  600. golden.AutoButtonColor = false
  601. golden.Image = "rbxassetid://6869680115"
  602. golden.ScaleType = Enum.ScaleType.Slice
  603. golden.SliceCenter = Rect.new(55, 55, 95, 95)
  604. golden.MouseButton1Click:Connect(function()
  605. add(getIdbyPet(Input.Text),"Golden")
  606. Main.Enabled = false
  607. coroutine.wrap(function()
  608. wait(2)
  609. Main.Enabled = true
  610. end)()
  611. end)
  612. TextLabel_2.Parent = golden
  613. TextLabel_2.AnchorPoint = Vector2.new(0.5, 0)
  614. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  615. TextLabel_2.BackgroundTransparency = 1.000
  616. TextLabel_2.BorderSizePixel = 0
  617. TextLabel_2.Position = UDim2.new(0.5, 0, 0, 0)
  618. TextLabel_2.Size = UDim2.new(0.899999976, 0, 1, 0)
  619. TextLabel_2.ZIndex = 7
  620. TextLabel_2.Font = Enum.Font.FredokaOne
  621. TextLabel_2.Text = "SPAWN GOLDEN!"
  622. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  623. TextLabel_2.TextScaled = true
  624. TextLabel_2.TextSize = 14.000
  625. TextLabel_2.TextStrokeColor3 = Color3.fromRGB(17, 58, 72)
  626. TextLabel_2.TextWrapped = true
  627.  
  628. UIPadding_2.Parent = golden
  629. UIPadding_2.PaddingBottom = UDim.new(0.100000001, 0)
  630. UIPadding_2.PaddingLeft = UDim.new(0.0250000004, 0)
  631. UIPadding_2.PaddingRight = UDim.new(0.0250000004, 0)
  632. UIPadding_2.PaddingTop = UDim.new(0.100000001, 0)
  633.  
  634. rainbow.Name = "rainbow"
  635. rainbow.Parent = Frame
  636. rainbow.AnchorPoint = Vector2.new(0.5, 0.5)
  637. rainbow.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  638. rainbow.BackgroundTransparency = 1.000
  639. rainbow.BorderSizePixel = 0
  640. rainbow.Position = UDim2.new(0.697449267, 0, 0.882624626, 0)
  641. rainbow.Size = UDim2.new(0.41525358, 0, 0.186612859, 0)
  642. rainbow.ZIndex = 6
  643. rainbow.AutoButtonColor = false
  644. rainbow.Image = "rbxassetid://6869680115"
  645. rainbow.ScaleType = Enum.ScaleType.Slice
  646. rainbow.SliceCenter = Rect.new(55, 55, 95, 95)
  647. rainbow.MouseButton1Click:Connect(function()
  648. add(getIdbyPet(Input.Text),"Rainbow")
  649. Main.Enabled = false
  650. coroutine.wrap(function()
  651. wait(2)
  652. Main.Enabled = true
  653. end)()
  654. end)
  655.  
  656. TextLabel_3.Parent = rainbow
  657. TextLabel_3.AnchorPoint = Vector2.new(0.5, 0)
  658. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  659. TextLabel_3.BackgroundTransparency = 1.000
  660. TextLabel_3.BorderSizePixel = 0
  661. TextLabel_3.Position = UDim2.new(0.5, 0, 0, 0)
  662. TextLabel_3.Size = UDim2.new(0.899999976, 0, 1, 0)
  663. TextLabel_3.ZIndex = 7
  664. TextLabel_3.Font = Enum.Font.FredokaOne
  665. TextLabel_3.Text = "SPAWN RAINBOW!"
  666. TextLabel_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  667. TextLabel_3.TextScaled = true
  668. TextLabel_3.TextSize = 14.000
  669. TextLabel_3.TextStrokeColor3 = Color3.fromRGB(17, 58, 72)
  670. TextLabel_3.TextWrapped = true
  671.  
  672. UIPadding_3.Parent = rainbow
  673. UIPadding_3.PaddingBottom = UDim.new(0.100000001, 0)
  674. UIPadding_3.PaddingLeft = UDim.new(0.0250000004, 0)
  675. UIPadding_3.PaddingRight = UDim.new(0.0250000004, 0)
  676. UIPadding_3.PaddingTop = UDim.new(0.100000001, 0)
  677.  
  678. dm.Name = "dm"
  679. dm.Parent = Frame
  680. dm.AnchorPoint = Vector2.new(0.5, 0.5)
  681. dm.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  682. dm.BackgroundTransparency = 1.000
  683. dm.BorderSizePixel = 0
  684. dm.Position = UDim2.new(0.275433272, 0, 0.882624626, 0)
  685. dm.Size = UDim2.new(0.41525358, 0, 0.186612859, 0)
  686. dm.ZIndex = 6
  687. dm.AutoButtonColor = false
  688. dm.Image = "rbxassetid://6869680115"
  689. dm.ScaleType = Enum.ScaleType.Slice
  690. dm.SliceCenter = Rect.new(55, 55, 95, 95)
  691. dm.MouseButton1Click:Connect(function()
  692. add(getIdbyPet(Input.Text),"Dark Matter")
  693. Main.Enabled = false
  694. end)
  695.  
  696. TextLabel_4.Parent = dm
  697. TextLabel_4.AnchorPoint = Vector2.new(0.5, 0)
  698. TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  699. TextLabel_4.BackgroundTransparency = 1.000
  700. TextLabel_4.BorderSizePixel = 0
  701. TextLabel_4.Position = UDim2.new(0.5, 0, 0, 0)
  702. TextLabel_4.Size = UDim2.new(0.899999976, 0, 1, 0)
  703. TextLabel_4.ZIndex = 7
  704. TextLabel_4.Font = Enum.Font.FredokaOne
  705. TextLabel_4.Text = "SPAWN DARK MATTER!"
  706. TextLabel_4.TextColor3 = Color3.fromRGB(255, 255, 255)
  707. TextLabel_4.TextScaled = true
  708. TextLabel_4.TextSize = 14.000
  709. TextLabel_4.TextStrokeColor3 = Color3.fromRGB(17, 58, 72)
  710. TextLabel_4.TextWrapped = true
  711.  
  712. UIPadding_4.Parent = dm
  713. UIPadding_4.PaddingBottom = UDim.new(0.100000001, 0)
  714. UIPadding_4.PaddingLeft = UDim.new(0.0250000004, 0)
  715. UIPadding_4.PaddingRight = UDim.new(0.0250000004, 0)
  716. UIPadding_4.PaddingTop = UDim.new(0.100000001, 0)
  717.  
  718. UIPadding_5.Parent = Main
  719. UIPadding_5.PaddingTop = UDim.new(0, -18)
  720. local INVUIBTN = Instance.new("TextButton")
  721. local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint")
  722. local UICorner = Instance.new("UICorner")
  723. local uistroke = Instance.new("Frame")
  724. local UICorner_2 = Instance.new("UICorner")
  725. local Thumbnail = Instance.new("ImageLabel")
  726. local Lock = Instance.new("ImageLabel")
  727.  
  728.  
  729. INVUIBTN.Name = "INVUIBTN"
  730. INVUIBTN.Parent = game.Players.LocalPlayer.PlayerGui.Main.Left.Tools
  731. INVUIBTN.AnchorPoint = Vector2.new(0.5, 0.5)
  732. INVUIBTN.BackgroundColor3 = Color3.fromRGB(59, 177, 252)
  733. INVUIBTN.BorderSizePixel = 0
  734. INVUIBTN.LayoutOrder = 3
  735. INVUIBTN.Size = UDim2.new(1, 0, 1, 0)
  736. INVUIBTN.ZIndex = 10
  737. INVUIBTN.AutoButtonColor = false
  738. INVUIBTN.Font = Enum.Font.GothamBold
  739. INVUIBTN.Text = ""
  740. INVUIBTN.TextColor3 = Color3.fromRGB(0, 0, 0)
  741. INVUIBTN.TextSize = 18.000
  742. INVUIBTN.MouseButton1Down:Connect(function()
  743. Main.Enabled = true
  744. end)
  745. UIAspectRatioConstraint.Parent = INVUIBTN
  746.  
  747. UICorner.CornerRadius = UDim.new(1, 0)
  748. UICorner.Parent = INVUIBTN
  749.  
  750. uistroke.Name = "ui-stroke"
  751. uistroke.Parent = INVUIBTN
  752. uistroke.AnchorPoint = Vector2.new(0.5, 0.5)
  753. uistroke.BackgroundColor3 = Color3.fromRGB(28, 69, 82)
  754. uistroke.BorderSizePixel = 0
  755. uistroke.Position = UDim2.new(0.5, 0, 0.5, 0)
  756. uistroke.Size = UDim2.new(1.13279116, 0, 1.13279116, 0)
  757. uistroke.ZIndex = 9
  758.  
  759. UICorner_2.CornerRadius = UDim.new(1, 0)
  760. UICorner_2.Parent = uistroke
  761.  
  762. Thumbnail.Name = "Thumbnail"
  763. Thumbnail.Parent = INVUIBTN
  764. Thumbnail.AnchorPoint = Vector2.new(0.5, 0.5)
  765. Thumbnail.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  766. Thumbnail.BackgroundTransparency = 1.000
  767. Thumbnail.BorderSizePixel = 0
  768. Thumbnail.Position = UDim2.new(0.49324882, 0, 0.498611182, 0)
  769. Thumbnail.Size = UDim2.new(0.778864563, 0, 0.887416124, 0)
  770. Thumbnail.ZIndex = 13
  771. Thumbnail.Image = "rbxassetid://7339529263"
  772. Thumbnail.ScaleType = Enum.ScaleType.Fit
  773.  
  774. Lock.Name = "Lock"
  775. Lock.Parent = INVUIBTN
  776. Lock.AnchorPoint = Vector2.new(0.5, 0.5)
  777. Lock.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  778. Lock.BackgroundTransparency = 1.000
  779. Lock.BorderSizePixel = 0
  780. Lock.Position = UDim2.new(0.5, 0, 0.5, 0)
  781. Lock.Size = UDim2.new(0.649999976, 0, 0.649999976, 0)
  782. Lock.Visible = false
  783. Lock.ZIndex = 15
  784. Lock.Image = "rbxassetid://6393098335"
  785. Lock.ImageColor3 = Color3.fromRGB(28, 69, 82)
  786. Lock.ScaleType = Enum.ScaleType.Fit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement