Roblox_Scripts6969

Horror game script

Nov 11th, 2023
291
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. -- Roblox Horror Map Generator Script
  2. -- Put this in a script in workspace
  3. print("Made by nightmareYoda222")
  4.  
  5. -- Get services
  6. local Workspace = game:GetService("Workspace")
  7. local Lighting = game:GetService("Lighting")
  8. local SoundService = game:GetService("SoundService")
  9.  
  10. -- Set up horror atmosphere
  11. Lighting.Ambient = Color3.new(0, 0, 0)
  12. Lighting.Brightness = 0.1
  13. Lighting.FogEnd = 50
  14. Lighting.FogColor = Color3.new(0, 0, 0)
  15.  
  16. -- Set up horror sound
  17. local horrorSound = Instance.new("Sound", Workspace)
  18. horrorSound.SoundId = "rbxassetid://your_sound_id_here" -- replace with your own sound id
  19. horrorSound.Volume = 1
  20. horrorSound.Looped = true
  21.  
  22. -- Play the sound
  23. horrorSound:Play()
  24.  
  25. print("Horror map has been generated!")
Tags: Roblox Script
Advertisement
Comments
Add Comment
Please, Sign In to add comment