Flic

The Mimic Chapter 2 Auto Beat

Mar 7th, 2021 (edited)
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.83 KB | None | 0 0
  1. -- Scripted by: Flic#8735 --
  2. -- https://www.roblox.com/games/6243699076/The-Mimic-Nightmare-Mode --
  3. -- This works by teleporting to Chapter 2 (NORMAL MODE) last stage then tweening your character to the badge section. --
  4.  
  5. local function noclip()
  6.     local noclip = true
  7.  
  8.     coroutine.wrap(
  9.         function()
  10.             while wait() do
  11.                 if (noclip) then
  12.                     for a, b in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  13.                         if b:FindFirstChild("Handle") then
  14.                             b.Handle.CanCollide = false
  15.                         end
  16.                     end
  17.                 end
  18.             end
  19.         end
  20.     )()
  21.  
  22.     game:GetService("Players").LocalPlayer.Character.Humanoid.Changed:connect(
  23.         function()
  24.             if noclip then
  25.                 game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 16
  26.             end
  27.         end
  28.     )
  29.  
  30.     game:GetService("RunService").Stepped:connect(
  31.         function()
  32.             if noclip then
  33.                 local torso =
  34.                     game.Players.LocalPlayer.Character:findFirstChild("Torso") or
  35.                     game.Players.LocalPlayer.Character:findFirstChild("UpperTorso")
  36.  
  37.                 if torso.Name == "UpperTorso" then
  38.                     for i, v in pairs(game:GetService("Players").LocalPlayer.Character:GetChildren()) do
  39.                         if v:IsA("BasePart") then
  40.                             v.CanCollide = false
  41.                         end
  42.                     end
  43.                     return
  44.                 end
  45.                 torso.CanCollide = false
  46.                 game:GetService("Players").LocalPlayer.Character.Head.CanCollide = false
  47.             end
  48.         end
  49.     )
  50.     local torso =
  51.         game.Players.LocalPlayer.Character:findFirstChild("Torso") or
  52.         game.Players.LocalPlayer.Character:findFirstChild("UpperTorso")
  53.     torso.Changed:connect(
  54.         function()
  55.             if noclip then
  56.                 local torso =
  57.                     game.Players.LocalPlayer.Character:findFirstChild("Torso") or
  58.                     game.Players.LocalPlayer.Character:findFirstChild("UpperTorso")
  59.                 torso.CanCollide = false
  60.                 game:GetService("Players").LocalPlayer.Character.Head.CanCollide = false
  61.             end
  62.         end
  63.     )
  64.  
  65.     _G.unnoclip = function()
  66.         noclip = false
  67.     end
  68. end
  69.  
  70. local TS = game:GetService("TweenService")
  71. local Plr = game:GetService("Players").LocalPlayer
  72. local HRP = Plr.Character.HumanoidRootPart
  73. local tween = TS:Create(HRP, TweenInfo.new(1), {CFrame = CFrame.new(1039.08362, 75.3413391, -354.462402)})
  74.  
  75. if game.PlaceId ~= 6425178683 then
  76.     game:GetService("TeleportService"):Teleport(6425178683, Plr)
  77. else
  78.     noclip()
  79.     wait(0.25)
  80.     tween:Play()
  81. end
  82.  
Add Comment
Please, Sign In to add comment