Advertisement
reruure

fatality script: credit tonybflako

Feb 9th, 2023
856
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | Gaming | 0 0
  1. local Spawner = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors%20Entity%20Spawner/Source.lua"))()
  2. -- Create entity
  3. local entityTable = Spawner.createEntity({
  4. CustomName = "the Putrid.", -- Custom name of your entity
  5. Model = "https://github.com/tonyBflako/vynixusdoors/blob/main/fatality.rbxm?raw=true", -- Can be GitHub file or rbxassetid
  6. Speed = 300, -- Percentage, 100 = default Rush speed
  7. DelayTime = 5, -- Time before starting cycles (seconds)
  8. HeightOffset = 0,
  9. CanKill = true,
  10. KillRange = 50,
  11. BackwardsMovement = false,
  12. BreakLights = true,
  13. FlickerLights = {
  14. true, -- Enabled/Disabled
  15. 100000, -- Time (seconds)
  16. },
  17. Cycles = {
  18. Min = 1,
  19. Max = 1,
  20. WaitTime = 2,
  21. },
  22. CamShake = {
  23. true, -- Enabled/Disabled
  24. {5555, 133124, 0, 1.5}, -- Shake values (don't change if you don't know)
  25. 60, -- Shake start distance (from Entity to you)
  26. },
  27. Jumpscare = {
  28. true, -- Enabled/Disabled
  29. {
  30. Image1 = "rbxassetid://0", -- Image1 url
  31. Image2 = "rbxassetid://0", -- Image2 url
  32. Shake = true,
  33. Sound1 = {
  34. 7817626386, -- SoundId
  35. { Volume = 5 }, -- Sound properties
  36. },
  37. Sound2 = {
  38. 0, -- SoundId
  39. { Volume = 0.5 }, -- Sound properties
  40. },
  41. Flashing = {
  42. false, -- Enabled/Disabled
  43. Color3.fromRGB(255, 255, 255), -- Color
  44. },
  45. Tease = {
  46. true, -- Enabled/Disabled
  47. Min = 50,
  48. Max = 50,
  49. },
  50. },
  51. },
  52. CustomDialog = {"You can", "put your", "custom death", "message here."}, -- Custom death message
  53. })
  54.  
  55. Spawner.runEntity(entityTable)
Tags: #doors
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement