Advertisement
munciseek

Untitled

Oct 13th, 2024 (edited)
1,254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 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. local roomValue = game.ReplicatedStorage.GameData.LatestRoom.Value
  54. if not checkRooms or not ((roomValue >= 48 and roomValue <= 55) or (roomValue >= 98 and roomValue <= 101)) then
  55. if not workspace:FindFirstChild("SeekMovingNewClone") then
  56. loadstring(game:HttpGet(url))()
  57. end
  58. end
  59. end
  60. end)
  61. end
  62.  
  63. -- Trauma
  64. local function Trauma()
  65. return coroutine.wrap(function()
  66. local count = 0
  67. while true do
  68. wait(math.random(200, 250))
  69. count = count + 1
  70. local roomValue = game.ReplicatedStorage.GameData.LatestRoom.Value
  71. if count % 2 == 1 then
  72. if not checkRooms or not ((roomValue >= 48 and roomValue <= 55) or (roomValue >= 98 and roomValue <= 101)) then
  73. loadstring(game:HttpGet("https://pastebin.com/raw/K6NCM8pk"))()
  74. end
  75. else
  76. loadstring(game:HttpGet("https://pastebin.com/raw/rsV2c9GK"))()
  77. end
  78. end
  79. end)
  80. end
  81.  
  82. local Smiler = createEntity("https://pastebin.com/raw/iawiTPDP", 600, 990)
  83. local Depth = createEntity("https://pastebin.com/raw/A6qwXP9d", 120, 180)
  84. local A200 = createEntity("https://pastebin.com/raw/wvGW1kFY", 200, 300)
  85. local Mile = createEntity("https://pastebin.com/raw/x7g1CKBk", 600, 900)
  86. local VHSsans = createEntity("https://pastebin.com/raw/NV5dLmji", 300, 450)
  87. local Tire = createEntity("https://pastebin.com/raw/tin0YPKd", 3600, 7200)
  88.  
  89. -- 运行实体
  90. Smiler()
  91. Depth()
  92. A200()
  93. Mile()
  94. VHSsans()
  95. Tire()
  96. Trauma()
  97. end
  98.  
  99. -- 脚本运行
  100. Sprint()
  101. Chat()
  102. Fog()
  103. achievements()
  104.  
  105. -- 游戏开始后运行实体
  106. game.ReplicatedStorage.GameData.LatestRoom.Changed:Wait()
  107. if game.ReplicatedStorage.GameData.LatestRoom.Value == 1 then
  108. require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Game).caption("Nightmare mode is activated!", true)
  109. initializeEntities(true)
  110. else
  111. game.Players.LocalPlayer:Kick("You can only run mode in the first room!")
  112. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement