Advertisement
mjv2023

Untitled

Sep 19th, 2023
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. local Creator = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors%20Entity%20Spawner/Source.lua"))()
  2.  
  3. local entity = Creator.createEntity({
  4. CustomName = "Doge", -- Custom name of your entity
  5. Model = 11402163089,
  6. Speed = 150, -- Percentage, 100 = default Rush speed
  7. DelayTime = 3, -- Time before starting cycles (seconds)
  8. HeightOffset = 0,
  9. CanKill = false,
  10. BreakLights = false,
  11. FlickerLights = {
  12. false, -- Enabled
  13. 5, -- Time (seconds)
  14. },
  15. Cycles = {
  16. Min = 5,
  17. Max = 5,
  18. WaitTime = 3,
  19. },
  20. CamShake = {
  21. false, -- Enabled
  22. {5, 15, 0.1, 1}, -- Shake values (don't change if you don't know)
  23. 1, -- Shake start distance (from Entity to you)
  24. },
  25. Jumpscare = {
  26. false, -- Enabled ('false' if you don't want jumpscare)
  27. {
  28. Image1 = "https://www.roblox.com/library/11401298618/bacon-but-not-as-mad", -- Image1 url
  29. Image2 = "https://www.roblox.com/library/11401297072/Bacon", -- Image2 url
  30. Shake = false,
  31. Sound1 = {
  32. 11400679305, -- SoundId
  33. { Volume = 1 }, -- Sound properties
  34. },
  35. Sound2 = {
  36. 10483837590, -- SoundId
  37. { Volume = 0 }, -- Sound properties
  38. },
  39. Flashing = {
  40. false, -- Enabled
  41. Color3.fromRGB(70, 25, 0), -- Color
  42. },
  43. Tease = {
  44. false, -- Enabled ('false' if you don't want tease)
  45. Min = 1,
  46. Max = 1,
  47. },
  48. },
  49. },
  50. })
  51.  
  52. ------------------------
  53.  
  54. -- Run the created entity
  55. Creator.runEntity(entity)
  56. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement