Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Creator = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors%20Entity%20Spawner/Source.lua"))()
- local entity = Creator.createEntity({
- CustomName = "Doge", -- Custom name of your entity
- Model = 11402163089,
- Speed = 150, -- Percentage, 100 = default Rush speed
- DelayTime = 3, -- Time before starting cycles (seconds)
- HeightOffset = 0,
- CanKill = false,
- BreakLights = false,
- FlickerLights = {
- false, -- Enabled
- 5, -- Time (seconds)
- },
- Cycles = {
- Min = 5,
- Max = 5,
- WaitTime = 3,
- },
- CamShake = {
- false, -- Enabled
- {5, 15, 0.1, 1}, -- Shake values (don't change if you don't know)
- 1, -- Shake start distance (from Entity to you)
- },
- Jumpscare = {
- false, -- Enabled ('false' if you don't want jumpscare)
- {
- Image1 = "https://www.roblox.com/library/11401298618/bacon-but-not-as-mad", -- Image1 url
- Image2 = "https://www.roblox.com/library/11401297072/Bacon", -- Image2 url
- Shake = false,
- Sound1 = {
- 11400679305, -- SoundId
- { Volume = 1 }, -- Sound properties
- },
- Sound2 = {
- 10483837590, -- SoundId
- { Volume = 0 }, -- Sound properties
- },
- Flashing = {
- false, -- Enabled
- Color3.fromRGB(70, 25, 0), -- Color
- },
- Tease = {
- false, -- Enabled ('false' if you don't want tease)
- Min = 1,
- Max = 1,
- },
- },
- },
- })
- ------------------------
- -- Run the created entity
- Creator.runEntity(entity)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement