Advertisement
munciseek

Untitled

Oct 13th, 2024 (edited)
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. local lighting = game:GetService("Lighting")
  2. local TextChatService = game:GetService("TextChatService")
  3. local achievementGiver = loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Utilities/main/Doors/Custom%20Achievements/Source.lua"))()
  4.  
  5. -- 冲刺系统
  6. local function Sprint()
  7. loadstring(game:HttpGet("https://pastebin.com/raw/QB0Qpwr9"))()
  8. end
  9.  
  10. -- 聊天信息
  11. local function Chat()
  12. local function sendMessages(messages, color)
  13. for _, message in ipairs(messages) do
  14. TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage('<font color="' .. color .. '" face="Oswald"><b>' .. message .. '</b></font>')
  15. end
  16. end
  17.  
  18. local messages = {
  19. {{"Nightmare Mode V2"}, "rgb(255,0,0)"},
  20. {{"Mode By Muhammadgames", "Helper By RegularVynixu & Volta", "Fixer By Munciseek"}, "rgb(255,255,0)"},
  21. {{"Linked To Clients"}, "rgb(0,255,0)"}
  22. }
  23. spawn(function()
  24. for _, msg in ipairs(messages) do
  25. sendMessages(msg[1], msg[2])
  26. wait(3)
  27. end
  28. end)
  29. end
  30.  
  31. -- 雾
  32. local function Fog()
  33. lighting.FogStart = 0
  34. lighting.FogEnd = 50
  35. end
  36.  
  37. -- 成就
  38. local function achievements()
  39. achievementGiver({
  40. Title = "Now this is your nightmare!",
  41. Desc = "Join a Match of Nightmare mode For the First Time",
  42. Reason = "You executed the Nightmare mode",
  43. Image = "rbxassetid://114387975243943"
  44. })
  45. end
  46.  
  47. -- 实体创建
  48. local function initializeEntities(checkRooms)
  49. local function createEntity(url, minWait, maxWait)
  50. return coroutine.wrap(function()
  51. while true do
  52. wait(math.random(minWait, maxWait))
  53. loadstring(game:HttpGet(url))()
  54. end
  55. end)
  56. end
  57.  
  58. -- Trauma
  59. local function Trauma()
  60. return coroutine.wrap(function()
  61. local count = 0
  62. while true do
  63. wait(math.random(200, 250))
  64. count = count + 1
  65. if count % 2 == 1 then
  66. loadstring(game:HttpGet("https://pastebin.com/raw/K6NCM8pk"))()
  67. else
  68. loadstring(game:HttpGet("https://pastebin.com/raw/rsV2c9GK"))()
  69. end
  70. end
  71. end)
  72. end
  73.  
  74. local Smiler = createEntity("https://pastebin.com/raw/iawiTPDP", 600, 990)
  75. local Depth = createEntity("https://pastebin.com/raw/A6qwXP9d", 120, 180)
  76. local A200 = createEntity("https://pastebin.com/raw/wvGW1kFY", 200, 300)
  77. local Mile = createEntity("https://pastebin.com/raw/x7g1CKBk", 600, 900)
  78. local VHSsans = createEntity("https://pastebin.com/raw/NV5dLmji", 300, 450)
  79. local Tire = createEntity("https://pastebin.com/raw/tin0YPKd", 3600, 7200)
  80.  
  81. -- 运行实体
  82. Smiler()
  83. Depth()
  84. A200()
  85. Mile()
  86. VHSsans()
  87. Tire()
  88. Trauma()
  89. end
  90.  
  91. -- 脚本运行
  92. Sprint()
  93. Chat()
  94. Fog()
  95. achievements()
  96.  
  97. -- 游戏开始
  98. game.ReplicatedStorage.GameData.LatestRoom.Changed:Wait()
  99. if game.ReplicatedStorage.GameData.LatestRoom.Value == 1 then
  100. require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Game).caption("Nightmare mode is activated!", true)
  101. initializeEntities(true)
  102. else
  103. game.Players.LocalPlayer:Kick("You can only run mode in the first room!")
  104. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement