Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---====== Load spawner ======---
- local spawner = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Entity%20Spawner/V2/Source.lua"))()
- ---====== Create entity ======---
- local entity = spawner.Create({
- Entity = {
- Name = "Trauma",
- Asset = "rbxassetid://137315057960740",
- HeightOffset = 0
- },
- Lights = {
- Flicker = {
- Enabled = true,
- Duration = 5
- },
- Shatter = true,
- Repair = false
- },
- Earthquake = {
- Enabled = false
- },
- CameraShake = {
- Enabled = true,
- Range = 100,
- Values = {1.5, 20, 0.1, 1} -- Magnitude, Roughness, FadeIn, FadeOut
- },
- Movement = {
- Speed = 600,
- Delay = 5,
- Reversed = false
- },
- Rebounding = {
- Enabled = false,
- Type = "Ambush", -- "Blitz"
- Min = 1,
- Max = 1,
- Delay = 2
- },
- Damage = {
- Enabled = true,
- Range = 100,
- Amount = 99999
- },
- Crucifixion = {
- Enabled = true,
- Range = 100,
- Resist = false,
- Break = true
- },
- Death = {
- Type = "Guiding", -- "Curious"
- Hints = {"You died to Trauma", "It will come every 3-4 minutes", "Note their location", "Don't worry, Try again!"},
- Cause = ""
- }
- })
- ---====== Debug entity ======---
- entity:SetCallback("OnDamagePlayer", function(newHealth)
- if newHealth == 0 then
- local jumpscare = loadstring(game:HttpGet("https://pastebin.com/raw/MwNSDg7E"))()
- local JS = jumpscare.Create({
- image = {
- Asset = "rbxassetid://136572789552041"
- },
- Audio = {
- Asset = "rbxassetid://10483837590",
- AC = true
- }
- })
- JS:Run()
- end
- end)
- ---====== Run entity ======---
- entity:Run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement