Advertisement
munciseek

Untitled

Jan 1st, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. local TextChatService = game:GetService("TextChatService")
  2.  
  3. local function sendMessages(messages)
  4. for _, message in ipairs(messages) do
  5. TextChatService.TextChannels.RBXGeneral:DisplaySystemMessage('<font color="' .. message[2] .. '" size="24"><b>' .. message[1] .. '</b></font>')
  6. wait(3)
  7. end
  8. end
  9.  
  10. local messages = {
  11. {"[Oof's Impossible Mode]: Script successfully executed", "rgb(0,255,0)"},
  12. {"SCRIPT VERSION: V2", "rgb(0,255,0)"},
  13. {"Good Luck", "rgb(255,255,255)"}
  14. }
  15.  
  16. spawn(function()
  17. sendMessages(messages)
  18. end)
  19.  
  20. local caption = require(game.Players.LocalPlayer.PlayerGui.MainUI.Initiator.Main_Game).caption
  21. caption("Oof's impossible mode script successfully loaded. V2", true)
  22. game.ReplicatedStorage.GameData.LatestRoom.Changed:Wait()
  23. sendMessages({{"[Script synced according to the room]", "rgb(255,255,255)"}})
  24. caption("Script sync'd according to the room.", true)
  25. wait(2.5)
  26. caption("Finish this difficulty and record it for a shoutout", true)
  27. --Entities program
  28. local function createEntity(url, delayTime, roomRange)
  29. return coroutine.wrap(function()
  30. while true do
  31. local gameData = game.ReplicatedStorage.GameData
  32. if roomRange then
  33. local roomValue = gameData.LatestRoom.Value
  34. if roomValue >= roomRange.min and roomValue <= roomRange.max then
  35. game.ReplicatedStorage.GameData.LatestRoom.Changed:Wait()
  36. loadstring(game:HttpGet(url))()
  37. end
  38. else
  39. loadstring(game:HttpGet(url))()
  40. end
  41. wait(delayTime)
  42. end
  43. end)
  44. end
  45. coroutine.wrap(function()
  46. wait(0.1)
  47. local jumpscareRush = game.Players.LocalPlayer.PlayerGui.MainUI.Jumpscare.Jumpscare_Rush
  48. jumpscareRush.ImageLabel.ImageColor3 = Color3.fromRGB(255, 0, 0)
  49. jumpscareRush.ImageLabelBig.ImageColor3 = Color3.fromRGB(255, 0, 0)
  50. local ambushMoving = game.Workspace:FindFirstChild("AmbushMoving")
  51. if ambushMoving then
  52. local ambush = ambushMoving:FindFirstChild("RushNew")
  53. if ambush then
  54. local ambushEmitter = ambush.Attachment:FindFirstChild("ParticleEmitter")
  55. if ambushEmitter then
  56. ambushEmitter.Color = ColorSequence.new({
  57. ColorSequenceKeypoint.new(0, Color3.new(1, 0.305882, 0.305882)),
  58. ColorSequenceKeypoint.new(1, Color3.new(1, 0.305882, 0.305882))
  59. })
  60. end
  61. end
  62. end
  63. local rushMoving = game.Workspace:FindFirstChild("RushMoving")
  64. if rushMoving then
  65. local rush = rushMoving:FindFirstChild("RushNew")
  66. if rush then
  67. local blackTrail = rush.Attachment:FindFirstChild("BlackTrail")
  68. if blackTrail then
  69. blackTrail.Color = ColorSequence.new({
  70. ColorSequenceKeypoint.new(0, Color3.new(0.407843, 0, 0)),
  71. ColorSequenceKeypoint.new(1, Color3.new(0.407843, 0, 0))
  72. })
  73. end
  74. local rushEmitter = rush.Attachment:FindFirstChild("ParticleEmitter")
  75. if rushEmitter then
  76. rushEmitter.Color = ColorSequence.new({
  77. ColorSequenceKeypoint.new(0, Color3.new(1, 0, 0)),
  78. ColorSequenceKeypoint.new(1, Color3.new(1, 0, 0))
  79. })
  80. end
  81. local playSound = rush:FindFirstChild("PlaySound")
  82. if playSound then
  83. playSound.PlaybackSpeed = 0.05
  84. end
  85. end
  86. end
  87. end)()
  88.  
  89. local function CommonSense()
  90. while true do
  91. game.ReplicatedStorage.GameData.LatestRoom.Changed:Wait()
  92. local roomValue = game.ReplicatedStorage.GameData.LatestRoom.Value
  93. if roomValue == 50 or roomValue == 100 then
  94. loadstring(game:HttpGet("https://pastebin.com/raw/juedYsB6"))()
  95. end
  96. end
  97. end
  98. local Eyes = createEntity("https://pastebin.com/raw/f7T7FQHw", 100)
  99. local Smiler = createEntity("https://pastebin.com/raw/uXJdh8uE", 200)
  100. local DimensionalEye = createEntity("https://pastebin.com/raw/rB81Fwp7", 300)
  101. local Hunger = createEntity("https://pastebin.com/raw/qHcQ2dkw", 696)
  102. local WH1T3 = createEntity("https://pastebin.com/raw/ULTFx5yb", 500)
  103. local Silence = createEntity("https://pastebin.com/raw/swGKJ9zd", 379)
  104. local Blinky = createEntity("https://pastebin.com/raw/6yLTkDvC", 268)
  105. local Smiley = createEntity("https://pastebin.com/raw/QcyrSN7P", 321)
  106. -- Run Entities
  107. A150()
  108. Eyes()
  109. Smiler()
  110. DimensionalEye()
  111. Silence()
  112. CommonSense()
  113. Blinky()
  114. Smiley()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement