Advertisement
Guest User

Doors Script A-60

a guest
Nov 12th, 2022
10,633
1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | Gaming | 1 0
  1. local Creator = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors%20Entity%20Spawner/Source.lua"))()
  2.  
  3. -- Create entity
  4. local entity = Creator.createEntity({
  5. CustomName = "Unknown", -- Custom name of your entity
  6. Model = "rbxassetid://11396762463", -- Can be GitHub file or rbxassetid
  7. Speed = 200, -- Percentage, 100 = default Rush speed
  8. DelayTime = 2, -- Time before starting cycles (seconds)
  9. HeightOffset = 0,
  10. CanKill = true,
  11. KillRange = 40,
  12. BreakLights = true,
  13. BackwardsMovement = false,
  14. FlickerLights = {
  15. true, -- Enabled/Disabled
  16. 2, -- Time (seconds)
  17. },
  18. Cycles = {
  19. Min = 1,
  20. Max = 4,
  21. WaitTime = 2,
  22. },
  23. CamShake = {
  24. true, -- Enabled/Disabled
  25. {30, 30, 0.1, 1}, -- Shake values (don't change if you don't know)
  26. 50, -- Shake start distance (from Entity to you)
  27. },
  28. Jumpscare = {
  29. true, -- Enabled/Disabled
  30. {
  31. Image1 = "rbxassetid://11394048190", -- Image1 url
  32. Image2 = "rbxassetid://11394048190", -- Image2 url
  33. Shake = true,
  34. Sound1 = {
  35. 10483790459, -- SoundId
  36. { Volume = 0.5 }, -- Sound properties
  37. },
  38. Sound2 = {
  39. 10483837590, -- SoundId
  40. { Volume = 0.5 }, -- Sound properties
  41. },
  42. Flashing = {
  43. true, -- Enabled/Disabled
  44. Color3.fromRGB(255, 255, 255), -- Color
  45. },
  46. Tease = {
  47. false, -- Enabled/Disabled
  48. Min = 1,
  49. Max = 1,
  50. },
  51. },
  52. },
  53. CustomDialog = {"I can't tell who you died to", "Basically just get in the closet quickly if there is a flickering light", "Entity:unknown210532", ".........."}, -- Custom death message
  54. })
  55.  
  56. -----[[ Advanced ]]-----
  57. entity.Debug.OnEntitySpawned = function(entityModel)
  58.  
  59. end
  60.  
  61. entity.Debug.OnEntityDespawned = function(entityModel)
  62. if getgenv().death == false then
  63. getgenv().Title = "Out of many Rebounds" --Title Here
  64. getgenv().Description = "Might Come back or not" --Description Here
  65. getgenv().Reason = "Encounter and survive the rare Entity called A-60" --Reason Here
  66. getgenv().BadgeId = 2129181688 --Replace Number with Your Badge ID
  67. getgenv().Category = 10 --You can replace the Category or dont
  68.  
  69. local Unlock = require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Lobby.RemoteListener.Modules.AchievementUnlock)
  70. local Achievements = debug.getupvalue(Unlock, 1)
  71. for i,v in pairs(require(game:GetService("ReplicatedStorage").Achievements)) do
  72. v.Title = getgenv().Title
  73. v.Desc = getgenv().Description
  74. v.Reason = getgenv().Reason
  75. v.BadgeId = getgenv().BadgeId
  76. v.Category = getgenv().Category
  77. end
  78. Unlock(nil,"Join")
  79. end
  80. end
  81.  
  82. entity.Debug.OnEntityStartMoving = function(entityModel)
  83.  
  84. end
  85.  
  86. entity.Debug.OnEntityFinishedRebound = function(entityModel)
  87.  
  88. end
  89.  
  90. entity.Debug.OnDeath = function()
  91. getgenv().death = true
  92. getgenv().Title = "Out of many Rebounds" --Title Here
  93. getgenv().Description = "Might Come back and did" --Description Here
  94. getgenv().Reason = "Encounter and dont survive the rare Entity called A-60" --Reason Here
  95. getgenv().BadgeId = 2129181688 --Replace Number with Your Badge ID
  96. getgenv().Category = 10 --You can replace the Category or dont
  97.  
  98. local Unlock = require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Lobby.RemoteListener.Modules.AchievementUnlock)
  99. local Achievements = debug.getupvalue(Unlock, 1)
  100. for i,v in pairs(require(game:GetService("ReplicatedStorage").Achievements)) do
  101. v.Title = getgenv().Title
  102. v.Desc = getgenv().Description
  103. v.Reason = getgenv().Reason
  104. v.BadgeId = getgenv().BadgeId
  105. v.Category = getgenv().Category
  106. end
  107. Unlock(nil,"Join")
  108. end
  109. ---------------------------
  110.  
  111. -- Run the created entity
  112. Creator.runEntity(entity)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement