Advertisement
Guest User

Doors

a guest
Apr 22nd, 2023
7,310
0
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/vff1bQ9F"))()
  2. local Window = Library.CreateLib("Doors Hub V2", "GrapeTheme")
  3. local Tab = Window:NewTab("Modes")
  4. local Section = Tab:NewSection("Modes")
  5. Section:NewButton("Mayhem Mode", "Have Fun!", function()
  6. loadstring(game:HttpGet('https://raw.githubusercontent.com/HollowedOutMods/MayhemMode/main/loader.lua'))()
  7. end)
  8. Section:NewButton("Impossible Mode", "Have Fun!", function()
  9. loadstring(game:HttpGet('https://raw.githubusercontent.com/Ukazix/impossible-mode/main/Protected_79.lua.txt'))()
  10. end)
  11. Section:NewButton("Endless Doors", "Have Fun!", function()
  12. --Credits to NovaNextruis, Muhammadgames, Zavaled, SquidR
  13. --ICherryKardess, Screech, Jessica, TheEndIsNear, C87FM
  14. --Your game might crash when you get an achievement
  15.  
  16. game.SoundService.AmbientReverb = "City"
  17. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/Script.lua"))()
  18. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/ScriptNoAchievements.txt"))()
  19. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/seekeye.lua"))()
  20. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/seekmodel.lua"))()
  21. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/VictrolaRecreation.txt"))()
  22. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/worldcuuuup/main/MusicReplace.txt"))()
  23. loadstring(game:HttpGet("https://raw.githubusercontent.com/check78/Entities/main/DeathSound.txt"))()
  24. end)
  25. Section:NewButton("Fragmented Mode", "Have fun!", function()
  26. loadstring(game:HttpGet("https://raw.githubusercontent.com/Potato032/Doors-Fragmented-Mode/main/ScriptDontShareItsOnDC.txt"))()
  27. end)
  28. Section:NewButton("Noonie Hardcore", "Have Fun!", function()
  29. loadstring(game:HttpGet('https://pastebin.com/raw/fT92NSzU'))()
  30. end)
  31. Section:NewButton("AK47 gun", "Dont Kill your friends!", function()
  32. -- Credit to PenguinManiack For Creating The Script
  33.  
  34. local Functions = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Functions.lua"))()
  35. local CustomShop = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Custom%20Shop%20Items/Source.lua"))()
  36. local UIS = game:GetService("UserInputService")
  37. local exampleTool = LoadCustomInstance("rbxassetid://12848567274") -- wand model
  38.  
  39. if game:GetService("Players").LocalPlayer.PlayerGui.MainUI.ItemShop.Visible == true then
  40. -- Create custom shop item
  41. CustomShop.CreateItem(exampleTool, {
  42. Title = "Harry Potter Wand",
  43. Desc = "Works on entities",
  44. Image = "https://cdn.discordapp.com/attachments/1049016956231102465/1078727375631679688/image_2023-02-24_121721211-removebg-preview.png",
  45. Price = "gun",
  46. Stack = 1,
  47. })
  48. ----------------------------------------- parenting
  49. else
  50. exampleTool.Parent = game.Players.LocalPlayer.Backpack
  51. end
  52. local tool = exampleTool
  53. local function Shoot()
  54. local bullet = game:GetObjects("rbxassetid://12848374097")[1]
  55. task.wait()
  56. bullet.Anchored = false
  57. bullet.Massless = false
  58. local Sound = Instance.new("Sound", game.StarterPlayer)
  59. Sound.Volume = 3.5
  60. Sound.SoundId = "rbxassetid://5238024665"
  61. Sound.PlayOnRemove = true
  62. Sound:Destroy()
  63. HRP = exampleTool.BulletPart.CFrame * CFrame.Angles(0,math.rad(-90),0)
  64. local Attachment = Instance.new("Attachment", bullet)
  65. local LV = Instance.new("LinearVelocity", Attachment) -- creating the linear velocity
  66. LV.MaxForce = math.huge -- no need to worry about this
  67. LV.VectorVelocity = (game:GetService("Players").LocalPlayer:GetMouse().Hit.Position - tool.BulletPart.Position).Unit * 100-- HRP.lookVector * 50 -- change 100 with how fast you want the projectile to go
  68. LV.Attachment0 = Attachment --Required Attachment
  69. bullet.Parent = game.Workspace
  70. bullet.CFrame = tool.BulletPart.CFrame * CFrame.Angles(math.rad(0),math.rad(90),math.rad(90))
  71. bullet.Touched:Connect(function(part)
  72. local Model = part:FindFirstAncestorWhichIsA("Model")
  73. if Model ~= nil and Model:GetAttribute("IsCustomEntity") == true then
  74. Model:Destroy()
  75. end
  76. end)
  77. task.wait(0.3)
  78. bullet:Destroy()
  79. end
  80. ----------------------------------------------- Shooting!
  81.  
  82. UIS.InputBegan:Connect(function(input)
  83. if tool.Parent == game.Players.LocalPlayer.Character then
  84. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  85. getgenv().BulletType = "12848374097"
  86. Shoot()
  87.  
  88. end
  89. end
  90. end)
  91. end)
  92. Section:NewButton("Purple Flashlight", "Light up;!", function()
  93. loadstring(game:HttpGet("https://raw.githubusercontent.com/K0t1n/Public/main/Purple%20Flashlight"))()
  94. end)
  95. Section:NewButton("Crucifix on anything press [q]", "Have Fun!", function()
  96. _G.Uses = 1
  97. _G.Range = 30
  98. _G.OnAnything = true
  99. _G.Fail = false
  100. _G.Variant = "Electric"
  101. loadstring(game:HttpGet('https://raw.githubusercontent.com/PenguinManiack/Crucifix/main/Crucifix.lua'))()
  102. end)
  103. local Tab = window:NewTab("Credits")
  104. local Section = Tab:NewSection("Credits")
  105. Section:NewButton("Angeliqq/Rainbow", "Owner", function()
  106. loadstring(game:HttpGet("https://pastebin.com/raw/tWGxhNq0"))()
  107. end)
  108.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement