Advertisement
epicguest

doors item giver v2

Jan 20th, 2023
5,394
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("DOORS ITEM GIVER", "Ocean")
  3. local Tab = Window:NewTab("Main")
  4. local Section = Tab:NewSection("Everything in the GUI")
  5.  
  6. Section:NewLabel("MADE BY SHARKBOY GAMER")
  7.  
  8. Section:NewButton("WELCOME ACHIEVEMENT", "gives you the welcome achievement", function()
  9. -- Achievement
  10. local Achievements = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Custom%20Achievements/Source.lua"))()
  11.  
  12. -- Creates and displays your custom achievement
  13. Achievements.Get({
  14. Title = "WELCOMEE",
  15. Desc = "welcome to the script :D",
  16. Reason = '"used the script',
  17. Image = "https://tr.rbxcdn.com/e97b809a33e25c3ca823b224b3f981b9/420/420/Image/Png",
  18. })
  19. end)
  20. Section:NewButton("Crucifix", "Gives you the crucifix in doors (only works on custom entities that you spawn)", function()
  21. loadstring(game:HttpGet("https://pastebin.com/raw/vYhqWNDq"))()
  22. -- Achievement
  23. local Achievements = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Custom%20Achievements/Source.lua"))()
  24.  
  25. -- Creates and displays your custom achievement
  26. Achievements.Get({
  27. Title = "Wait what?",
  28. Desc = "LSPLASH IS GONNA BE SO MAD AT YOU BRO LOL",
  29. Reason = '"get the crucifix before the hotel+doors update',
  30. Image = "https://tr.rbxcdn.com/e97b809a33e25c3ca823b224b3f981b9/420/420/Image/Png",
  31. })
  32. end)
  33. Section:NewButton("SKELETON KEY ACHIEVEMENT", "gives you the skeleton key achievement", function()
  34. -- Achievement
  35. local Achievements = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Custom%20Achievements/Source.lua"))()
  36.  
  37. -- Creates and displays your custom achievement
  38. Achievements.Get({
  39. Title = "Wait what?",
  40. Desc = "LSPLASH IS GONNA BE SO MAD AT YOU BRO LOL",
  41. Reason = '"get the skeleton key before the hotel+doors update',
  42. Image = "https://tr.rbxcdn.com/e97b809a33e25c3ca823b224b3f981b9/420/420/Image/Png",
  43. })
  44. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement