Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Roblox Horror Map Generator Script
- -- Put this in a script in workspace
- print("Made by nightmareYoda222")
- -- Get services
- local Workspace = game:GetService("Workspace")
- local Lighting = game:GetService("Lighting")
- local SoundService = game:GetService("SoundService")
- -- Set up horror atmosphere
- Lighting.Ambient = Color3.new(0, 0, 0)
- Lighting.Brightness = 0.1
- Lighting.FogEnd = 50
- Lighting.FogColor = Color3.new(0, 0, 0)
- -- Set up horror sound
- local horrorSound = Instance.new("Sound", Workspace)
- horrorSound.SoundId = "rbxassetid://your_sound_id_here" -- replace with your own sound id
- horrorSound.Volume = 1
- horrorSound.Looped = true
- -- Play the sound
- horrorSound:Play()
- print("Horror map has been generated!")
Advertisement