Advertisement
munciseek

Untitled

Aug 24th, 2024 (edited)
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 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 = "VHS Sans",
  10. Asset = "rbxassetid://138440846200667",
  11. HeightOffset = 0
  12. },
  13. Lights = {
  14. Flicker = {
  15. Enabled = true,
  16. Duration = 2
  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 = 3,
  31. Delay = 3,
  32. Reversed = false
  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 VHS Sans", "It's slow", "But we can't fall behind", "Try again!"},
  55. Cause = ""
  56. }
  57. })
  58.  
  59. ---====== Debug entity ======---
  60. entity:SetCallback("OnDamagePlayer", function(newHealth)
  61. if newHealth == 0 then
  62. local jumpscare = loadstring(game:HttpGet("https://pastebin.com/raw/MwNSDg7E"))()
  63. local JS = jumpscare.Create({
  64. image = {
  65. Asset = "rbxassetid://74871301759765"
  66. },
  67. Audio = {
  68. Asset = "rbxassetid://3317082923",
  69. AC = true
  70. }
  71. })
  72. JS:Run()
  73. local player = game.Players.LocalPlayer
  74. local caption = player:WaitForChild("PlayerGui"):WaitForChild("MainUI"):WaitForChild("MainFrame"):WaitForChild("Caption")
  75. caption.TextColor3 = Color3.new(1, 0, 0) -- 将字体颜色设置为红色
  76. require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Game).caption("This is your fault!, Hacker!",true)
  77. end
  78. end)
  79.  
  80. ---====== Run entity ======---
  81.  
  82. entity:Run()
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement