Advertisement
ameersss777

Untitled

Jun 17th, 2023
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.64 KB | None | 0 0
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/HosteeScriptz/HosteeHub/main/Nothing'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = "Ameers Visual Hub | Pet Simulator X",
  4. LoadingTitle = "Ameers Visual Script...",
  5. LoadingSubtitle = "by ameer",
  6. ConfigurationSaving = {
  7. Enabled = false,
  8. FolderName = "Ameer on Top",
  9. FileName = "AmeersVisual"
  10. },
  11. Discord = {
  12. Enabled = true,
  13. Invite = "hosteehub",
  14. RememberJoins = false
  15. },
  16. KeySystem = true, -- Set this to true to use our key system
  17. KeySettings = {
  18. Title = "Hostee Visual Protection",
  19. Subtitle = "HosteeHub",
  20. Note = "Join the discord (discord.gg/hosteehub)",
  21. FileName = "HosteeHub",
  22. SaveKey = false,
  23. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  24. Key = "AmeerzScriptz"
  25. }
  26. })
  27.  
  28. -- Notifying Functions
  29. local v2 = require(game.ReplicatedStorage:WaitForChild("Framework"):WaitForChild("Library"));
  30. local singstop
  31. local function wrong()
  32. Rayfield:Notify({
  33. Title = "Wrong Pet",
  34. Content = "Please Enter A Valid Pet Name",
  35. Duration = 1,
  36. Image = 9003576350,
  37. Actions = {
  38. -- Notification Buttons
  39. Ignore = {
  40. Name = "Understood!",
  41. Callback = function()
  42. -- print("The user tapped Okay!")
  43. end
  44. },
  45. },
  46. })
  47. end
  48. local function wrong2()
  49. Rayfield:Notify({
  50. Title = "No Pet",
  51. Content = "Please Enter A Pet Name",
  52. Duration = 1,
  53. Image = 9003568230,
  54. Actions = {
  55. -- Notification Buttons
  56. Ignore = {
  57. Name = "Okay!",
  58. Callback = function()
  59. -- print("The user tapped Okay!")
  60. end
  61. },
  62. },
  63. })
  64. end
  65. local function nothuge()
  66. Rayfield:Notify({
  67. Title = "Not A Huge Pet",
  68. Content = "Please Put A Huge Pet",
  69. Duration = 1,
  70. Image = 9003575074,
  71. Actions = {
  72. -- Notification Buttons
  73. Ignore = {
  74. Name = "Okay!",
  75. Callback = function()
  76. -- print("The user tapped Okay!")
  77. end
  78. },
  79. },
  80. })
  81. end
  82. local function nottext()
  83. Rayfield:Notify({
  84. Title = "No Text",
  85. Content = "Please Enter A Text",
  86. Duration = 1,
  87. Image = 8997529686,
  88. Actions = {
  89. -- Notification Buttons
  90. Ignore = {
  91. Name = "Okay!",
  92. Callback = function()
  93. -- print("The user tapped Okay!")
  94. end
  95. },
  96. },
  97. })
  98. end
  99. -- Other Functions
  100.  
  101. function table_contains(tbl, x)
  102. found = false
  103. for _, v in pairs(tbl) do
  104. if v == x then
  105. found = true
  106. end
  107. end
  108. return found
  109. end
  110.  
  111. function deletevalues(tbl, value)
  112. for k, v in pairs(tbl) do
  113. if v ~= value then
  114. tbl[k] = nil
  115. end
  116. end
  117. end
  118.  
  119. function removeValueFromTable(table, value)
  120. for key, val in pairs(table) do
  121. if val == value or key == value then
  122. table[key] = nil
  123. return true
  124. end
  125. end
  126. return false
  127. end
  128.  
  129. game:GetService("ReplicatedStorage").Assets.UI.FRAMEWORK.InfoOverlay.Blocks.Rare.Visible = false
  130.  
  131. -- Enchanting Fucntions
  132. nkList = {}
  133. function ttenchant()
  134. Library = require(game:GetService("ReplicatedStorage").Framework:FindFirstChild("Library"))
  135. Functions = Library.Functions
  136. TitanicList = {}
  137. TList = {}
  138. table.foreach(Library.Directory.Pets, function(i, v)
  139. if v.titanic then
  140. table.insert(TitanicList, i)
  141. end
  142. end)
  143. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  144. local y = {}
  145. for i, v in pairs(pets) do
  146. y[v["uid"]] = false
  147. end
  148. for i, v in pairs(pets) do
  149. if table.find(TitanicList, v["id"]) ~= nil then
  150. if not v.powers then
  151. v.powers = {}
  152. end
  153. if not v.powers[1] then
  154. v.powers[1] = {}
  155. end
  156. if not v.powers[2] then
  157. v.powers[2] = {}
  158. v.powers[2][1] = "Strength"
  159. v.powers[2][2] = math.random(1, 5)
  160. end
  161. v.powers[1][1] = "Titanic"
  162. v.powers[1][2] = 1
  163. if v.nk == nil then
  164. v.nk = "Demonized"
  165. end
  166. table.insert(TList, v["uid"])
  167. end
  168. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Mailbox.Frame.GiftPet.Container.Inventory.Pets:GetDescendants()) do
  169. if table_contains(TList, V.Name) then
  170. V:Destroy()
  171. end
  172. end
  173. end
  174. spawn(function()
  175. while task.wait(0.01) do
  176. ETList = {}
  177. table.foreach(Library.Directory.Pets, function(i, v)
  178. if v.titanic then
  179. table.insert(ETList, i)
  180. end
  181. end)
  182. local lpets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  183. local ly = {}
  184. for i, v in pairs(lpets) do
  185. ly[v["uid"]] = false
  186. end
  187. for i, v in pairs(lpets) do
  188. if table.find(ETList, v["id"]) ~= nil then
  189. if not table_contains(nkList, v.nk) and not v.isGift then
  190. if not v.powers then
  191. v.powers = {}
  192. end
  193. if not v.powers[1] then
  194. v.powers[1] = {}
  195. end
  196. if not v.powers[2] then
  197. v.powers[2] = {}
  198. v.powers[2][1] = "Strength"
  199. v.powers[2][2] = math.random(1, 5)
  200. end
  201. v.powers[1][1] = "Titanic"
  202. v.powers[1][2] = 1
  203. if v.nk ~= getgenv().newtext then
  204. table.insert(nkList, v.nk)
  205. end
  206. if table_contains(nkList, getgenv().newtext) then
  207. if removeValueFromTable(nkList, getgenv().newtext) then
  208. print("deleted")
  209. end
  210. end
  211. end
  212. end
  213. end
  214. end
  215. end)
  216. end
  217.  
  218. Hnk = {}
  219. function henchant(hname, lname)
  220. Library = require(game:GetService("ReplicatedStorage").Framework:FindFirstChild("Library"))
  221. Functions = Library.Functions
  222. HugeList = {}
  223. HList = {}
  224. table.foreach(Library.Directory.Pets, function(i, v)
  225. if v.name == hname or v.name == lname then
  226. table.insert(HugeList, i)
  227. end
  228. end)
  229. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  230. local y = {}
  231. for i, v in pairs(pets) do
  232. y[v["uid"]] = false
  233. end
  234. for i, v in pairs(pets) do
  235. if table.find(HugeList, v["id"]) ~= nil then
  236. if not v.powers then
  237. v.powers = {}
  238. end
  239. if not v.powers[1] then
  240. v.powers[1] = {}
  241. end
  242. if not v.powers[2] then
  243. v.powers[2] = {}
  244. v.powers[2][1] = "Strength"
  245. v.powers[2][2] = math.random(1, 5)
  246. end
  247. v.powers[1][1] = "Best Friend"
  248. v.powers[1][2] = 1
  249. if v.nk == nil then
  250. v.nk = "Demonized"
  251. end
  252. table.insert(HList, v["uid"])
  253. end
  254. end
  255. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Inventory.Frame.Main.Pets.Normal:GetDescendants()) do
  256. if table_contains(HList, V.Name) then
  257. V:Destroy()
  258. end
  259. end
  260. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Mailbox.Frame.GiftPet.Container.Inventory.Pets:GetDescendants()) do
  261. if table_contains(HList, V.Name) then
  262. V:Destroy()
  263. end
  264. end
  265. spawn(function()
  266. while task.wait(0.01) do
  267. HHList = {}
  268. table.foreach(Library.Directory.Pets, function(i, v)
  269. if v.huge then
  270. table.insert(HHList, i)
  271. end
  272. end)
  273. local lpets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  274. local ly = {}
  275. for i, v in pairs(lpets) do
  276. ly[v["uid"]] = false
  277. end
  278. for i, v in pairs(lpets) do
  279. if table.find(HHList, v["id"]) ~= nil then
  280. if not table_contains(Hnk, v.nk) and not v.isGift then
  281. if not v.powers then
  282. v.powers = {}
  283. end
  284. if not v.powers[1] then
  285. v.powers[1] = {}
  286. end
  287. if not v.powers[2] then
  288. v.powers[2] = {}
  289. v.powers[2][1] = "Strength"
  290. v.powers[2][2] = math.random(1, 5)
  291. end
  292. v.powers[1][1] = "Best Friend"
  293. v.powers[1][2] = 1
  294. if v.nk ~= getgenv().newtext then
  295. table.insert(Hnk, v.nk)
  296. end
  297. if table_contains(Hnk, getgenv().newtext) then
  298. if removeValueFromTable(Hnk, getgenv().newtext) then
  299. print("deleted")
  300. end
  301. end
  302. end
  303. end
  304. end
  305. end
  306. end)
  307. end
  308.  
  309. Enk = {}
  310. function excenchant(excname, fppname)
  311. tttohugecheck = false
  312. Library = require(game:GetService("ReplicatedStorage").Framework:FindFirstChild("Library"))
  313. Functions = Library.Functions
  314. ExcList = {}
  315. EList = {}
  316. table.foreach(Library.Directory.Pets, function(i, v)
  317. if v.name == excname or v.name == fppname then
  318. table.insert(ExcList, i)
  319. end
  320. end)
  321. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  322. local y = {}
  323. for i, v in pairs(pets) do
  324. y[v["uid"]] = false
  325. end
  326. for i, v in pairs(pets) do
  327. if table.find(ExcList, v["id"]) ~= nil then
  328. if not v.powers then
  329. v.powers = {}
  330. end
  331. if not v.powers[1] then
  332. v.powers[1] = {}
  333. end
  334. if not v.powers[2] then
  335. v.powers[2] = {}
  336. v.powers[2][1] = "Strength"
  337. v.powers[2][2] = math.random(1, 5)
  338. end
  339. v.powers[1][1] = "Companion"
  340. v.powers[1][2] = 2
  341. if v.nk == nil then
  342. v.nk = "Demonized"
  343. end
  344. table.insert(EList, v["uid"])
  345. end
  346. end
  347. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Inventory.Frame.Main.Pets.Normal:GetDescendants()) do
  348. if table_contains(EList, V.Name) then
  349. V:Destroy()
  350. end
  351. end
  352. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Mailbox.Frame.GiftPet.Container.Inventory.Pets:GetDescendants()) do
  353. if table_contains(EList, V.Name) then
  354. V:Destroy()
  355. end
  356. end
  357. spawn(function()
  358. while task.wait(0.01) do
  359. EEList = {}
  360. table.foreach(Library.Directory.Pets, function(i, v)
  361. if v.name == excname then
  362. table.insert(EEList, i)
  363. end
  364. end)
  365. local lpets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  366. local ly = {}
  367. for i, v in pairs(lpets) do
  368. ly[v["uid"]] = false
  369. end
  370. for i, v in pairs(lpets) do
  371. if table.find(EEList, v["id"]) ~= nil then
  372. if not table_contains(Enk, v.nk) and not v.isGift then
  373. if not v.powers then
  374. v.powers = {}
  375. end
  376. if not v.powers[1] then
  377. v.powers[1] = {}
  378. end
  379. if not v.powers[2] then
  380. v.powers[2] = {}
  381. v.powers[2][1] = "Strength"
  382. v.powers[2][2] = math.random(1, 5)
  383. end
  384. v.powers[1][1] = "Companion"
  385. v.powers[1][2] = 2
  386. if v.nk ~= getgenv().newtext then
  387. table.insert(Enk, v.nk)
  388. end
  389. if table_contains(Enk, getgenv().newtext) then
  390. if removeValueFromTable(Enk, getgenv().newtext) then
  391. print("deleted")
  392. end
  393. end
  394. end
  395. end
  396. end
  397. end
  398. end)
  399. end
  400.  
  401. Bnk = {}
  402. function bananaenchant()
  403. Library = require(game:GetService("ReplicatedStorage").Framework:FindFirstChild("Library"))
  404. Functions = Library.Functions
  405. BananaList = {}
  406. BList = {}
  407. table.foreach(Library.Directory.Pets, function(i, v)
  408. if v.name == "banana" or v.name == "Dog" then
  409. table.insert(BananaList, i)
  410. end
  411. end)
  412. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  413. local y = {}
  414. for i, v in pairs(pets) do
  415. y[v["uid"]] = false
  416. end
  417. for i, v in pairs(pets) do
  418. if table.find(BananaList, v["id"]) ~= nil then
  419. if not v.powers then
  420. v.powers = {}
  421. end
  422. if not v.powers[1] then
  423. v.powers[1] = {}
  424. end
  425. local value1 = "Royalty"
  426. local value2 = "Magnet"
  427. local value3 = "Glittering"
  428.  
  429. local randomIndex = math.random(1, 3)
  430.  
  431. local randomValue
  432. if randomIndex == 1 then
  433. randomValue = value1
  434. elseif randomIndex == 2 then
  435. randomValue = value2
  436. else
  437. randomValue = value3
  438. end
  439. v.powers[1][1] = randomValue
  440. v.powers[1][2] = 1
  441. v.powers[2] = nil
  442. if v.nk == nil then
  443. v.nk = "Demonized"
  444. end
  445. table.insert(BList, v["uid"])
  446. end
  447. end
  448. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Inventory.Frame.Main.Pets.Normal:GetDescendants()) do
  449. if table_contains(BList, V.Name) then
  450. V:Destroy()
  451. end
  452. end
  453. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Mailbox.Frame.GiftPet.Container.Inventory.Pets:GetDescendants()) do
  454. if table_contains(BList, V.Name) then
  455. V:Destroy()
  456. end
  457. end
  458. spawn(function()
  459. while task.wait(0.01) do
  460. BBList = {}
  461. table.foreach(Library.Directory.Pets, function(i, v)
  462. if v.name == "banana" then
  463. table.insert(BBList, i)
  464. end
  465. end)
  466. local lpets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  467. local ly = {}
  468. for i, v in pairs(lpets) do
  469. ly[v["uid"]] = false
  470. end
  471. for i, v in pairs(lpets) do
  472. if table.find(BBList, v["id"]) ~= nil then
  473. if not table_contains(Bnk, v.nk) and not v.isGift then
  474. if not v.powers then
  475. v.powers = {}
  476. end
  477. if not v.powers[1] then
  478. v.powers[1] = {}
  479. end
  480. local value1 = "Royalty"
  481. local value2 = "Magnet"
  482. local value3 = "Glittering"
  483.  
  484. local randomIndex = math.random(1, 3)
  485.  
  486. local randomValue
  487. if randomIndex == 1 then
  488. randomValue = value1
  489. elseif randomIndex == 2 then
  490. randomValue = value2
  491. else
  492. randomValue = value3
  493. end
  494. v.powers[1][1] = randomValue
  495. v.powers[1][2] = 1
  496. v.powers[2] = nil
  497. table.insert(Bnk, v.nk)
  498. end
  499. if table_contains(Bnk, getgenv().newtext) then
  500. if removeValueFromTable(Bnk, getgenv().newtext) then
  501. print("deleted")
  502. end
  503. end
  504. end
  505. end
  506. end
  507. end)
  508. end
  509.  
  510. function giftenchant(gfname, pname)
  511. Library = require(game:GetService("ReplicatedStorage").Framework:FindFirstChild("Library"))
  512. Functions = Library.Functions
  513. GiftList = {}
  514. GList = {}
  515. table.foreach(Library.Directory.Pets, function(i, v)
  516. if v.name == gfname or v.name == pname then
  517. table.insert(GiftList, i)
  518. end
  519. end)
  520. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  521. local y = {}
  522. for i, v in pairs(pets) do
  523. y[v["uid"]] = false
  524. end
  525. for i, v in pairs(pets) do
  526. if table.find(GiftList, v["id"]) ~= nil then
  527. v.powers = nil
  528. v.snk = nil
  529. v.nk = nil
  530. table.insert(GList, v["uid"])
  531. end
  532. end
  533. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Inventory.Frame.Main.Pets.Normal:GetDescendants()) do
  534. if table_contains(GList, V.Name) then
  535. V:Destroy()
  536. end
  537. end
  538. for I, V in pairs(game:GetService("Players").LocalPlayer.PlayerGui.Mailbox.Frame.GiftPet.Container.Inventory.Pets:GetDescendants()) do
  539. if table_contains(GList, V.Name) then
  540. V:Destroy()
  541. end
  542. end
  543. end
  544.  
  545. function sign()
  546. spawn(function()
  547. while singstop do
  548. task.wait(0.1)
  549. if game:GetService("Players").LocalPlayer.PlayerGui.Rename.Frame.SignInfo.Visible == false then
  550. game:GetService("Players").LocalPlayer.PlayerGui.Rename.Frame.SignInfo.Visible = true
  551. end
  552. local pets = require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Pets
  553. local y = {}
  554. for i, v in pairs(pets) do
  555. y[v["uid"]] = false
  556. end
  557. for i, v in pairs(pets) do
  558. if v.nk == getgenv().newtext and v.snk ~= true then
  559. v.snk = true
  560. end
  561. end
  562. end
  563. end)
  564. end
  565.  
  566. -- Titanics
  567.  
  568. local fpet
  569. local fpetID
  570. local Tab = Window:CreateTab("Titanics", 12378209702) -- Title, Image
  571. local Paragraph = Tab:CreateParagraph({
  572. Title = "Requirements",
  573. Content = [[Experiencing Bugs/Errors? Contact Support, discord.gg/hosteehub]]
  574. })
  575. local Input = Tab:CreateInput({
  576. Name = "Pet To Replace",
  577. PlaceholderText = "Party Dog",
  578. RemoveTextAfterFocusLost = false,
  579. Callback = function(Text)
  580. fpetID = nil
  581. if Text == "" or Text == nil then
  582. fpet = nil
  583. else
  584. fpet = Text
  585. end
  586. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  587. local fpetcsm = string.split(v.Name, " - ")[2]
  588. if fpetcsm == tostring(fpet) then
  589. fpetID = string.split(v.Name, " - ")[1]
  590. end
  591. end
  592. end,
  593. })
  594.  
  595. -- Titanic Replacament
  596. local titanicname
  597. function TitanicChange()
  598. if fpetID == nil and fpet ~= nil then
  599. wrong()
  600. elseif fpet == nil then
  601. wrong2()
  602. end
  603. if fpet ~= nil and fpetID ~= nil then
  604. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  605. local titanicsm = string.split(v.Name, " - ")[2]
  606. if titanicsm == tostring(titanicname) then
  607. local titanicID = string.split(v.Name, " - ")[1]
  608. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets[fpetID .. " - " .. fpet]
  609. ["Pet Data (" .. fpet .. ")"])
  610. v1.name = titanicname
  611. v1.model = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  612. [titanicID .. " - " .. titanicname]
  613. .Pet
  614. v1.modelGold = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  615. [titanicID .. " - " .. titanicname].Golden
  616. local v11 = {}
  617. v11.random = {}
  618. v1.sounds = v11
  619. v1.fly = require(v:FindFirstChildOfClass("ModuleScript")).fly
  620. v1.titanic = true
  621. v1.isGift = false
  622. v1.giftEggId = nil
  623. v1.giftCallback = nil
  624. v1.balloon = require(v:FindFirstChildOfClass("ModuleScript")).balloon
  625. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  626. v1.goldenThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).goldenThumbnail
  627. v1.darkMatterThumbnail = ""
  628. v1.rarity = "Exclusive"
  629. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  630. v1.tradeable = true
  631. v1.strengthMin = 2
  632. v1.strengthMax = 3
  633. v1.petFlyHeight = require(v:FindFirstChildOfClass("ModuleScript")).petFlyHeight
  634. v1.ridingGravity = require(v:FindFirstChildOfClass("ModuleScript")).ridingGravity
  635. v1.ridingJumpPower = require(v:FindFirstChildOfClass("ModuleScript")).ridingJumpPower
  636. v1.ridingCameraOffset = require(v:FindFirstChildOfClass("ModuleScript")).ridingCameraOffset
  637. ttenchant()
  638. break
  639. end
  640. end
  641. end
  642. end
  643.  
  644. local Section = Tab:CreateSection("Normal Titanics")
  645. local Button = Tab:CreateButton({
  646. Name = "Titanic Jolly Cat",
  647. Callback = function()
  648. titanicname = "Titanic Jolly Cat"
  649. TitanicChange()
  650. end,
  651. })
  652. local Button = Tab:CreateButton({
  653. Name = "Titanic Balloon Monkey",
  654. Callback = function()
  655. titanicname = "Titanic Balloon Monkey"
  656. TitanicChange()
  657. end,
  658. })
  659. local Button = Tab:CreateButton({
  660. Name = "Titanic Neon Agony",
  661. Callback = function()
  662. titanicname = "Titanic Neon Agony"
  663. TitanicChange()
  664. end,
  665. })
  666. local Button = Tab:CreateButton({
  667. Name = "Titanic Hubert",
  668. Callback = function()
  669. titanicname = "Titanic Hubert"
  670. TitanicChange()
  671. end,
  672. })
  673. local Button = Tab:CreateButton({
  674. Name = "Titanic Red Balloon Cat",
  675. Callback = function()
  676. titanicname = "Titanic Red Balloon Cat"
  677. TitanicChange()
  678. end,
  679. })
  680. local Button = Tab:CreateButton({
  681. Name = "Titanic Blue Balloon Cat",
  682. Callback = function()
  683. titanicname = "Titanic Blue Balloon Cat"
  684. TitanicChange()
  685. end,
  686. })
  687. local Button = Tab:CreateButton({
  688. Name = "Titanic Dominus Astra",
  689. Callback = function()
  690. titanicname = "Titanic Dominus Astra"
  691. TitanicChange()
  692. end,
  693. })
  694. local Button = Tab:CreateButton({
  695. Name = "Titanic Blobfish",
  696. Callback = function()
  697. titanicname = "Titanic Blobfish"
  698. TitanicChange()
  699. end,
  700. })
  701. local Button = Tab:CreateButton({
  702. Name = "Titanic Hologram Cat",
  703. Callback = function()
  704. titanicname = "Titanic Hologram Cat"
  705. TitanicChange()
  706. end,
  707. })
  708. local Section = Tab:CreateSection("Admin Titanics")
  709. local Button = Tab:CreateButton({
  710. Name = "Titanic Hippomelon",
  711. Callback = function()
  712. titanicname = "Titanic Hippomelon"
  713. TitanicChange()
  714. end,
  715. })
  716. local Section = Tab:CreateSection("Merch Titanics")
  717. local Button = Tab:CreateButton({
  718. Name = "Titanic Lucki",
  719. Callback = function()
  720. titanicname = "Titanic Lucki"
  721. TitanicChange()
  722. end,
  723. })
  724. local Button = Tab:CreateButton({
  725. Name = "Titanic banana",
  726. Callback = function()
  727. titanicname = "Titanic Banana"
  728. TitanicChange()
  729. end,
  730. })
  731. local Button = Tab:CreateButton({
  732. Name = "Titanic Capybara",
  733. Callback = function()
  734. titanicname = "Titanic Capybara"
  735. TitanicChange()
  736. end,
  737. })
  738. local Tab2 = Window:CreateTab("Huges", 12371216119) -- Title, Image
  739. local Paragraph2 = Tab2:CreateParagraph({
  740. Title = "Note :",
  741. Content =
  742. [[
  743.  
  744. You Can Change Multiple Pets
  745. Use The Grid Toggle To Update The Pets
  746. You Can Use Any Pet You Want Dm Demonized#0001 If You Encountered Some Error(s)
  747. ]]
  748.  
  749. })
  750. local fpet2
  751. local fpetID2
  752. local Input2 = Tab2:CreateInput({
  753. Name = "Pet To Replace",
  754. PlaceholderText = "Party Dog",
  755. RemoveTextAfterFocusLost = false,
  756. Callback = function(Text)
  757. fpetID2 = nil
  758. if Text == "" or Text == nil then
  759. fpet2 = nil
  760. else
  761. fpet2 = Text
  762. end
  763. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  764. local fpetcsm = string.split(v.Name, " - ")[2]
  765. if fpetcsm == tostring(fpet2) then
  766. fpetID2 = string.split(v.Name, " - ")[1]
  767. end
  768. end
  769. end,
  770. })
  771. local Huge
  772. local HugeID
  773. function CheckHuge(Text)
  774. HugeID = nil
  775. if Text == "" or Text == nil then
  776. Huge = nil
  777. else
  778. Huge = Text
  779. end
  780. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  781. local fpetcsm = string.split(v.Name, " - ")[2]
  782. if fpetcsm == tostring(Huge) then
  783. HugeID = string.split(v.Name, " - ")[1]
  784. end
  785. end
  786. end
  787.  
  788. local Input3 = Tab2:CreateInput({
  789. Name = "The Huge Pet",
  790. PlaceholderText = "Huge Pumpkin Cat",
  791. RemoveTextAfterFocusLost = false,
  792. Callback = function(Text)
  793. CheckHuge(Text)
  794. end,
  795. })
  796. function HugeChange()
  797. getgenv().hugecheck = false
  798. if fpetID2 == nil and fpet2 ~= nil or HugeID == nil and Huge ~= nil then
  799. wrong()
  800. elseif fpet2 == nil or Huge == nil then
  801. wrong2()
  802. end
  803. if fpet2 ~= nil and fpetID2 ~= nil and Huge ~= nil and HugeID ~= nil then
  804. local petname = Huge
  805. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  806. local titanicsm = string.split(v.Name, " - ")[2]
  807. if titanicsm == tostring(petname) then
  808. local titanicID = string.split(v.Name, " - ")[1]
  809. if require(v:FindFirstChildOfClass("ModuleScript")).huge then
  810. hugecheck = true
  811. else
  812. hugecheck = false
  813. end
  814. break
  815. end
  816. end
  817. if hugecheck then
  818. task.wait(0.01)
  819. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  820. local titanicsm = string.split(v.Name, " - ")[2]
  821. if titanicsm == tostring(petname) then
  822. local HugeI = string.split(v.Name, " - ")[1]
  823. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  824. [fpetID2 .. " - " .. fpet2]
  825. ["Pet Data (" .. fpet2 .. ")"])
  826. v1.name = petname
  827. v1.model = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  828. [HugeI .. " - " .. petname]
  829. .Pet
  830. v1.modelGold = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  831. [HugeI .. " - " .. petname].Golden
  832. local v11 = {}
  833. v11.random = {}
  834. v1.sounds = v11
  835. v1.fly = require(v:FindFirstChildOfClass("ModuleScript")).fly
  836. v1.huge = true
  837. v1.titanic = false
  838. v1.balloon = require(v:FindFirstChildOfClass("ModuleScript")).balloon
  839. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  840. v1.goldenThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).goldenThumbnail
  841. v1.darkMatterThumbnail = ""
  842. v1.rarity = "Exclusive"
  843. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  844. v1.tradeable = true
  845. v1.strengthMin = 2
  846. v1.strengthMax = 3
  847. v1.isGift = false
  848. v1.giftEggId = nil
  849. v1.giftCallback = nil
  850. v1.hidden = false
  851. henchant(petname, fpet2)
  852. break
  853. end
  854. end
  855. else
  856. nothuge()
  857. end
  858. end
  859. end
  860.  
  861. local Button = Tab2:CreateButton({
  862. Name = "Replace",
  863. Callback = function()
  864. HugeChange()
  865. end,
  866. })
  867. local Section = Tab2:CreateSection("Admin Huges")
  868. local Button = Tab2:CreateButton({
  869. Name = "Huge Lovemelon",
  870. Callback = function()
  871. Huge = "Huge Lovemelon"
  872. CheckHuge(Huge)
  873. task.wait()
  874. HugeChange()
  875. end,
  876. })
  877. local Button = Tab2:CreateButton({
  878. Name = "Huge Hippomelon",
  879. Callback = function()
  880. Huge = "Huge Hippomelon"
  881. CheckHuge(Huge)
  882. task.wait()
  883. HugeChange()
  884. end,
  885. })
  886. local Button = Tab2:CreateButton({
  887. Name = "Huge Coin",
  888. Callback = function()
  889. Huge = "Huge Coin"
  890. CheckHuge(Huge)
  891. task.wait()
  892. HugeChange()
  893. end,
  894. })
  895. local Button = Tab2:CreateButton({
  896. Name = "Huge Pink Lucky Block",
  897. Callback = function()
  898. Huge = "Huge Pink Lucky Block"
  899. CheckHuge(Huge)
  900. task.wait()
  901. HugeChange()
  902. end,
  903. })
  904. local Button = Tab2:CreateButton({
  905. Name = "Huge Rainbow Lucky Block",
  906. Callback = function()
  907. Huge = "Huge Rainbow Lucky Block"
  908. CheckHuge(Huge)
  909. task.wait()
  910. HugeChange()
  911. end,
  912. })
  913. local Button = Tab2:CreateButton({
  914. Name = "Huge Samurai Bull",
  915. Callback = function()
  916. Huge = "Huge Samurai Bull"
  917. CheckHuge(Huge)
  918. task.wait()
  919. HugeChange()
  920. end,
  921. })
  922. local Button = Tab2:CreateButton({
  923. Name = "Huge Samurai Dragon",
  924. Callback = function()
  925. Huge = "Huge Samurai Dragon"
  926. CheckHuge(Huge)
  927. task.wait()
  928. HugeChange()
  929. end,
  930. })
  931. local Button = Tab2:CreateButton({
  932. Name = "Huge Otter",
  933. Callback = function()
  934. Huge = "Huge Otter"
  935. CheckHuge(Huge)
  936. task.wait()
  937. HugeChange()
  938. end,
  939. })
  940. local Button = Tab2:CreateButton({
  941. Name = "Huge Unicorn",
  942. Callback = function()
  943. Huge = "Huge Unicorn"
  944. CheckHuge(Huge)
  945. task.wait()
  946. HugeChange()
  947. end,
  948. })
  949. local Tab4 = Window:CreateTab("Gifts/Eggs", 10015952468) -- Title, Image
  950. local Paragraph4 = Tab4:CreateParagraph({
  951. Title = "Note :",
  952. Content = [[HosteeHub On Top]]
  953. })
  954. local Tab5 = Window:CreateTab("Hoverboards", 12712051608) -- Title, Image
  955. local Paragraph5 = Tab5:CreateParagraph({
  956. Title = "Note :",
  957. Content = [[Visual Hoverboards]]
  958. })
  959. local Button = Tab5:CreateButton({
  960. Name = "Unlock Hoverboards",
  961. Callback = function()
  962. require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Hoverboards = {}
  963. for i,v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Hoverboards:GetChildren())do
  964. if v:IsA("Folder") then
  965. table.insert(require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().Hoverboards, v.Name)
  966. end
  967. end
  968. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  969. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Equip = function(board)
  970. require(game:GetService("ReplicatedStorage").Library.Client.Save).Get().EquippedHoverboard = board
  971. getsenv(game.Players.LocalPlayer.PlayerScripts.Scripts.GUIs.Hoverboards).Update()
  972. end
  973. end
  974. })
  975. local fpet4
  976. local fpetID4
  977. local Input4 = Tab4:CreateInput({
  978. Name = "Pet To Replace",
  979. PlaceholderText = "Cat",
  980. RemoveTextAfterFocusLost = false,
  981. Callback = function(Text)
  982. fpetID4 = nil
  983. if Text == "" or Text == nil then
  984. fpet4 = nil
  985. else
  986. fpet4 = Text
  987. end
  988. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  989. local fpetcsm = string.split(v.Name, " - ")[2]
  990. if fpetcsm == tostring(fpet4) then
  991. fpetID4 = string.split(v.Name, " - ")[1]
  992. end
  993. end
  994. end,
  995. })
  996. local option
  997. local Button = Tab4:CreateButton({
  998. Name = "Replace",
  999. Callback = function()
  1000. if fpetID4 == nil and fpet4 ~= nil then
  1001. wrong()
  1002. elseif fpet4 == nil then
  1003. wrong2()
  1004. end
  1005. if fpet4 ~= nil and fpetID4 ~= nil then
  1006. local petname = option
  1007. task.wait(0.01)
  1008. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1009. local titanicsm = string.split(v.Name, " - ")[2]
  1010. if titanicsm == tostring(petname) then
  1011. local HugeI = string.split(v.Name, " - ")[1]
  1012. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1013. [fpetID4 .. " - " .. fpet4]
  1014. ["Pet Data (" .. fpet4 .. ")"])
  1015. v1.name = petname
  1016. v1.model = nil
  1017. v1.modelGold = nil
  1018. local v11 = {}
  1019. v11.random = {}
  1020. v1.sounds = v11
  1021. v1.fly = nil
  1022. v1.huge = nil
  1023. v1.titanic = nil
  1024. v1.balloon = nil
  1025. v1.goldenThumbnail = nil
  1026. v1.darkMatterThumbnail = nil
  1027. v1.rarity = "Exclusive"
  1028. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  1029. v1.tradeable = true
  1030. v1.strengthMin = nil
  1031. v1.strengthMax = nil
  1032. v1.companionEnchantLevel = nil
  1033. v1.ignoreConvert = nil
  1034. v1.isGift = true
  1035. v1.giftEggId = petname
  1036. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  1037. v1.giftCallback = function(p1, p2)
  1038. end
  1039. if string.split(petname, " ")[1] == "Hype" then
  1040. v1.name = "Update Hype Gift"
  1041. end
  1042. giftenchant(petname, fpet4)
  1043. break
  1044. end
  1045. end
  1046. end
  1047. end,
  1048. })
  1049. local Section = Tab4:CreateSection("Eggs")
  1050. local Dropdown = Tab4:CreateDropdown({
  1051. Name = "Exclusive Egg",
  1052. Options = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11" },
  1053. CurrentOption = "Choose",
  1054. Flag = "Dropdown1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  1055. Callback = function(Option)
  1056. option = "Exclusive Egg " .. Option
  1057. end,
  1058. })
  1059. local Dropdown = Tab4:CreateDropdown({
  1060. Name = "Season 1 Gifts",
  1061. Options = { "Basic", "Rare", "Epic", "Legendary", "Mythical" },
  1062. CurrentOption = "Choose",
  1063. Flag = "Dropdown2", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  1064. Callback = function(Option)
  1065. option = "Season 1 " .. Option .. " Gift"
  1066. end,
  1067. })
  1068. local Dropdown = Tab4:CreateDropdown({
  1069. Name = "Hype Gifts",
  1070. Options = { "1", "2" },
  1071. CurrentOption = "Choose",
  1072. Flag = "Dropdown3", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  1073. Callback = function(Option)
  1074. option = "Hype Gift " .. Option
  1075. end,
  1076. })
  1077. local petname4
  1078. local petnameID
  1079. function giftchange()
  1080. if fpetID4 == nil and fpet4 ~= nil then
  1081. wrong()
  1082. elseif fpet4 == nil then
  1083. wrong2()
  1084. end
  1085. if fpet4 ~= nil and fpetID4 ~= nil then
  1086. task.wait(0.01)
  1087. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1088. local titanicsm = string.split(v.Name, " - ")[2]
  1089. if titanicsm == tostring(petnameID) then
  1090. local HugeI = string.split(v.Name, " - ")[1]
  1091. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1092. [fpetID4 .. " - " .. fpet4]
  1093. ["Pet Data (" .. fpet4 .. ")"])
  1094. v1.name = petname4
  1095. v1.model = nil
  1096. v1.modelGold = nil
  1097. local v11 = {}
  1098. v11.random = {}
  1099. v1.sounds = v11
  1100. v1.fly = nil
  1101. v1.huge = nil
  1102. v1.titanic = nil
  1103. v1.balloon = nil
  1104. v1.goldenThumbnail = nil
  1105. v1.darkMatterThumbnail = nil
  1106. v1.rarity = "Exclusive"
  1107. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  1108. v1.tradeable = true
  1109. v1.strengthMin = nil
  1110. v1.strengthMax = nil
  1111. v1.companionEnchantLevel = nil
  1112. v1.ignoreConvert = nil
  1113. v1.isGift = true
  1114. v1.giftEggId = petnameID
  1115. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  1116. v1.giftCallback = function(p1, p2)
  1117. end
  1118. giftenchant(petname4, fpet4)
  1119. break
  1120. end
  1121. end
  1122. end
  1123. end
  1124.  
  1125. local Section = Tab4:CreateSection("Others (Instant Replace)")
  1126. local Button = Tab4:CreateButton({
  1127. Name = "Huge Machine Egg",
  1128. Callback = function()
  1129. petname4 = "Huge Machine Egg 1"
  1130. petnameID = petname4
  1131. giftchange()
  1132. end,
  1133. })
  1134. local Button = Tab4:CreateButton({
  1135. Name = "Halloween Gift",
  1136. Callback = function()
  1137. petname4 = "Halloween Gift"
  1138. petnameID = "Halloween 2022 Gift"
  1139. giftchange()
  1140. end,
  1141. })
  1142. local Button = Tab4:CreateButton({
  1143. Name = "Christmas Stocking",
  1144. Callback = function()
  1145. petname4 = "Christmas 2022 Stocking"
  1146. petnameID = petname4
  1147. giftchange()
  1148. end,
  1149. })
  1150. local Button = Tab4:CreateButton({
  1151. Name = "New Years 2023 Gift",
  1152. Callback = function()
  1153. petname4 = "New Years 2023 Gift"
  1154. petnameID = petname4
  1155. giftchange()
  1156. end,
  1157. })
  1158. local exc
  1159. function excChange()
  1160. if fpetID3 == nil and fpet3 ~= nil then
  1161. wrong()
  1162. elseif fpet3 == nil then
  1163. wrong2()
  1164. end
  1165. if fpet3 ~= nil and fpetID3 ~= nil then
  1166. local petname = exc
  1167. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1168. local petsm = string.split(v.Name, " - ")[2]
  1169. if petsm == tostring(petname) then
  1170. local petID = string.split(v.Name, " - ")[1]
  1171. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets[fpetID3 .. " - " .. fpet3]
  1172. ["Pet Data (" .. fpet3 .. ")"])
  1173. v1.name = petname
  1174. v1.model = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets[petID .. " - " .. petname]
  1175. .Pet
  1176. v1.modelGold = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1177. [petID .. " - " .. petname].Golden
  1178. local v11 = {}
  1179. v11.random = {}
  1180. v1.sounds = v11
  1181. v1.fly = require(v:FindFirstChildOfClass("ModuleScript")).fly
  1182. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  1183. v1.goldenThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).goldenThumbnail
  1184. v1.darkMatterThumbnail = ""
  1185. v1.rarity = "Exclusive"
  1186. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  1187. v1.tradeable = true
  1188. v1.hidden = false
  1189. v1.strengthMin = require(v:FindFirstChildOfClass("ModuleScript")).strengthMin
  1190. v1.strengthMax = require(v:FindFirstChildOfClass("ModuleScript")).strengthMax
  1191. v1.titanic = false
  1192. v1.huge = false
  1193. v1.isGift = false
  1194. v1.giftEggId = nil
  1195. v1.giftCallback = nil
  1196. v1.balloon = require(v:FindFirstChildOfClass("ModuleScript")).balloon
  1197. v1.companionEnchantLevel = require(v:FindFirstChildOfClass("ModuleScript")).companionEnchantLevel
  1198. excenchant(petname, fpet3)
  1199. break
  1200. end
  1201. end
  1202. end
  1203. end
  1204.  
  1205. local Tab3 = Window:CreateTab("Misc", 10946336703) -- Title, Image
  1206. local Paragraph3 = Tab3:CreateParagraph({
  1207. Title = "Note :",
  1208. Content =
  1209. [[Enjoy your Time at Hosteehub ;)]]
  1210. })
  1211. local Input3 = Tab3:CreateInput({
  1212. Name = "Pet To Replace",
  1213. PlaceholderText = "Cat",
  1214. RemoveTextAfterFocusLost = false,
  1215. Callback = function(Text)
  1216. fpetID3 = nil
  1217. if Text == "" or Text == nil then
  1218. fpet3 = nil
  1219. else
  1220. fpet3 = Text
  1221. end
  1222. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1223. local fpetcsm = string.split(v.Name, " - ")[2]
  1224. if fpetcsm == tostring(fpet3) then
  1225. fpetID3 = string.split(v.Name, " - ")[1]
  1226. end
  1227. end
  1228. end,
  1229. })
  1230. local Button = Tab3:CreateButton({
  1231. Name = "Bladee",
  1232. Callback = function()
  1233. exc = "Bladee"
  1234. excChange()
  1235. end,
  1236. })
  1237. local Button = Tab3:CreateButton({
  1238. Name = "Hubert",
  1239. Callback = function()
  1240. exc = "Hubert"
  1241. if fpetID3 == nil and fpet3 ~= nil then
  1242. wrong()
  1243. elseif fpet3 == nil then
  1244. wrong2()
  1245. end
  1246. if fpet3 ~= nil and fpetID3 ~= nil then
  1247. local petname = exc
  1248. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1249. local petsm = string.split(v.Name, "- ")[2]
  1250. if petsm == tostring(petname) then
  1251. local petID = string.split(v.Name, "- ")[1]
  1252. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1253. [fpetID3 .. " - " .. fpet3]
  1254. ["Pet Data (" .. fpet3 .. ")"])
  1255. v1.name = petname
  1256. v1.model = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets[petID .. "- " .. petname]
  1257. .Pet
  1258. v1.modelGold = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1259. [petID .. "- " .. petname].Golden
  1260. local v11 = {}
  1261. v11.random = {}
  1262. v1.sounds = v11
  1263. v1.fly = require(v:FindFirstChildOfClass("ModuleScript")).fly
  1264. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  1265. v1.goldenThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).goldenThumbnail
  1266. v1.darkMatterThumbnail = ""
  1267. v1.rarity = require(v:FindFirstChildOfClass("ModuleScript")).rarity
  1268. v1.isPremium = require(v:FindFirstChildOfClass("ModuleScript")).isPremium
  1269. v1.tradeable = true
  1270. v1.hidden = false
  1271. v1.strengthMin = require(v:FindFirstChildOfClass("ModuleScript")).strengthMin
  1272. v1.strengthMax = require(v:FindFirstChildOfClass("ModuleScript")).strengthMax
  1273. v1.titanic = false
  1274. v1.huge = false
  1275. v1.isGift = false
  1276. v1.giftEggId = nil
  1277. v1.giftCallback = nil
  1278. v1.balloon = require(v:FindFirstChildOfClass("ModuleScript")).balloon
  1279. v1.companionEnchantLevel = require(v:FindFirstChildOfClass("ModuleScript")).companionEnchantLevel
  1280. excenchant(petname, fpet3)
  1281. break
  1282. end
  1283. end
  1284. end
  1285. end,
  1286. })
  1287. local Button = Tab3:CreateButton({
  1288. Name = "Water Wolf",
  1289. Callback = function()
  1290. exc = "Water Wolf"
  1291. excChange()
  1292. end,
  1293. })
  1294. local Button = Tab3:CreateButton({
  1295. Name = "Yellow Lucky Block",
  1296. Callback = function()
  1297. exc = "Yellow Lucky Block"
  1298. excChange()
  1299. end,
  1300. })
  1301. local Button = Tab3:CreateButton({
  1302. Name = "Blue Lucky Block",
  1303. Callback = function()
  1304. exc = "Blue Lucky Block"
  1305. excChange()
  1306. end,
  1307. })
  1308. local Button = Tab3:CreateButton({
  1309. Name = "Lovemelon",
  1310. Callback = function()
  1311. exc = "Lovemelon"
  1312. excChange()
  1313. end,
  1314. })
  1315. local Button = Tab3:CreateButton({
  1316. Name = "Coin Cat",
  1317. Callback = function()
  1318. exc = "Coin Cat"
  1319. excChange()
  1320. end,
  1321. })
  1322. local Button = Tab3:CreateButton({
  1323. Name = "Coin Dragon",
  1324. Callback = function()
  1325. exc = "Coin Dragon"
  1326. excChange()
  1327. end,
  1328. })
  1329. local Button = Tab3:CreateButton({
  1330. Name = "Coinortuus",
  1331. Callback = function()
  1332. exc = "Coinortuus"
  1333. excChange()
  1334. end,
  1335. })
  1336. local Button = Tab3:CreateButton({
  1337. Name = "Coin Cat",
  1338. Callback = function()
  1339. exc = "Coin Cat"
  1340. excChange()
  1341. end,
  1342. })
  1343. local Button = Tab3:CreateButton({
  1344. Name = "Super Axolotl",
  1345. Callback = function()
  1346. exc = "Super Axolotl"
  1347. excChange()
  1348. end,
  1349. })
  1350. local Button = Tab3:CreateButton({
  1351. Name = "Ninja",
  1352. Callback = function()
  1353. exc = "Ninja"
  1354. excChange()
  1355. end,
  1356. })
  1357. local Button = Tab3:CreateButton({
  1358. Name = "Ninja Turtle",
  1359. Callback = function()
  1360. exc = "Ninja Turtle"
  1361. excChange()
  1362. end,
  1363. })
  1364. local Button = Tab3:CreateButton({
  1365. Name = "Wicked Agony",
  1366. Callback = function()
  1367. exc = "Wicked Agony"
  1368. excChange()
  1369. end,
  1370. })
  1371. local Button = Tab3:CreateButton({
  1372. Name = "Banana (Dog Required)",
  1373. Callback = function()
  1374. local petname = "banana"
  1375. for i, v in pairs(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets:GetChildren()) do
  1376. local petsm = string.split(v.Name, " - ")[2]
  1377. if petsm == tostring(petname) then
  1378. local petID = string.split(v.Name, " - ")[1]
  1379. local v1 = require(game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets["2 - Dog"]["Pet Data (Dog)"])
  1380. v1.name = petname
  1381. v1.model = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets[petID .. " - " .. petname]
  1382. .Pet
  1383. v1.modelGold = game:GetService("ReplicatedStorage")["__DIRECTORY"].Pets
  1384. [petID .. " - " .. petname].Golden
  1385. local v11 = {}
  1386. v11.random = {}
  1387. v1.sounds = v11
  1388. v1.fly = false
  1389. v1.thumbnail = require(v:FindFirstChildOfClass("ModuleScript")).thumbnail
  1390. v1.goldenThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).goldenThumbnail
  1391. v1.darkMatterThumbnail = require(v:FindFirstChildOfClass("ModuleScript")).darkMatterThumbnail
  1392. v1.rarity = "Basic"
  1393. v1.isPremium = false
  1394. v1.tradeable = true
  1395. v1.isVanity = true
  1396. v1.companionEnchantLevel = 3
  1397. v1.strengthMin = 2
  1398. v1.strengthMax = 3
  1399. v1.titanic = false
  1400. v1.huge = false
  1401. v1.isGift = false
  1402. v1.giftEggId = nil
  1403. v1.giftCallback = nil
  1404. bananaenchant()
  1405. break
  1406. end
  1407. end
  1408. end,
  1409. })
  1410. local Tab5 = Window:CreateTab("Fake Sign", 7402706511) -- Title, Image
  1411. local Paragraph = Tab5:CreateParagraph({
  1412. Title = "Requirements",
  1413. Content =
  1414. [[Fully functional, made by Hosteehub]]
  1415. })
  1416. local Input = Tab5:CreateInput({
  1417. Name = "Text To Use",
  1418. PlaceholderText = "Sexton",
  1419. RemoveTextAfterFocusLost = false,
  1420. Callback = function(Text)
  1421. getgenv().newtext = Text
  1422. singstop = false
  1423. end,
  1424. })
  1425. local Button = Tab5:CreateButton({
  1426. Name = "Sign",
  1427. Callback = function()
  1428. if getgenv().newtext ~= nil then
  1429. v2.LocalPlayer.Name = getgenv().newtext
  1430. singstop = true
  1431. sign()
  1432. else
  1433. nottext()
  1434. end
  1435. end,
  1436. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement