Advertisement
munciseek

Untitled

Aug 24th, 2024 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 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 = "Trauma",
  10. Asset = "rbxassetid://137315057960740",
  11. HeightOffset = 0
  12. },
  13. Lights = {
  14. Flicker = {
  15. Enabled = true,
  16. Duration = 5
  17. },
  18. Shatter = true,
  19. Repair = false
  20. },
  21. Earthquake = {
  22. Enabled = false
  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 = 600,
  31. Delay = 5,
  32. Reversed = true
  33. },
  34. Rebounding = {
  35. Enabled = false,
  36. Type = "Ambush", -- "Blitz"
  37. Min = 1,
  38. Max = 1,
  39. Delay = 2
  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 died to Trauma", "It will come every 3-4 minutes", "Note their location", "Don't worry, Try again!"},
  55. Cause = ""
  56. }
  57. })
  58.  
  59. ---====== Debug entity ======---
  60.  
  61. entity:SetCallback("OnDamagePlayer", function(newHealth)
  62. if newHealth == 0 then
  63. local jumpscare = loadstring(game:HttpGet("https://pastebin.com/raw/MwNSDg7E"))()
  64. local JS = jumpscare.Create({
  65. image = {
  66. Asset = "rbxassetid://136572789552041"
  67. },
  68. Audio = {
  69. Asset = "rbxassetid://10483837590",
  70. AC = true
  71. }
  72. })
  73. JS:Run()
  74. end
  75. end)
  76.  
  77. ---====== Run entity ======---
  78.  
  79. entity:Run()
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement