Advertisement
munciseek

Untitled

Oct 13th, 2024 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. ---====== Load spawner ======---
  2.  
  3. local spawner = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Entity%20Spawner/V2/Source.lua"))()
  4.  
  5. ---====== Create entity ======---
  6.  
  7. local entity = spawner.Create({
  8. Entity = {
  9. Name = "Mile",
  10. Asset = "rbxassetid://123807593638768",
  11. HeightOffset = 1
  12. },
  13. Lights = {
  14. Flicker = {
  15. Enabled = true,
  16. Duration = 15
  17. },
  18. Shatter = true,
  19. Repair = false
  20. },
  21. Earthquake = {
  22. Enabled = true
  23. },
  24. CameraShake = {
  25. Enabled = true,
  26. Range = 100,
  27. Values = {1.5, 20, 0.1, 1} -- Magnitude, Roughness, FadeIn, FadeOut
  28. },
  29. Movement = {
  30. Speed = 800,
  31. Delay = 15,
  32. Reversed = false
  33. },
  34. Rebounding = {
  35. Enabled = true,
  36. Type = "Ambush", -- "Blitz"
  37. Min = 3,
  38. Max = 5,
  39. Delay = 3
  40. },
  41. Damage = {
  42. Enabled = true,
  43. Range = 100,
  44. Amount = 99999
  45. },
  46. Crucifixion = {
  47. Enabled = true,
  48. Range = 100,
  49. Resist = false,
  50. Break = true
  51. },
  52. Death = {
  53. Type = "Guiding", -- "Curious"
  54. Hints = {"You have died to Mile", "You only have 15 seconds to hide when it appears", "Please find the hiding spot as soon as possible", " Try again and Keep going!"},
  55. Cause = ""
  56. }
  57. })
  58.  
  59. ---====== Debug entity ======---
  60. entity:SetCallback("OnSpawned", function()
  61. local caption = game.Players.LocalPlayer:WaitForChild("PlayerGui").MainUI.MainFrame.Caption
  62. caption.TextColor3 = Color3.fromRGB(255, 0, 0)
  63. require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Game).caption("You have 15 seconds to hide",true)
  64. wait(5)
  65. caption.TextColor3 = Color3.fromRGB(255, 222, 189)
  66. end)
  67.  
  68. entity:SetCallback("OnDamagePlayer", function(newHealth)
  69. if newHealth == 0 then
  70. local jumpscare = loadstring(game:HttpGet("https://pastebin.com/raw/MwNSDg7E"))()
  71. local JS = jumpscare.Create({
  72. image = {
  73. Asset = "rbxassetid://9002021052"
  74. },
  75. Audio = {
  76. Asset = "rbxassetid://9043345011",
  77. AC = false
  78. }
  79. })
  80. JS:Run()
  81. end
  82. end)
  83.  
  84. ---====== Run entity ======---
  85.  
  86. entity:Run()
  87.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement