Inoob8C

Flee The Facility GUI

Aug 1st, 2023
325
2
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.48 KB | None | 2 0
  1. local Mercury = loadstring(game:HttpGet("https://raw.githubusercontent.com/deeeity/mercury-lib/master/src.lua"))()
  2.  
  3. local GUI = Mercury:Create{
  4. Name = "Flee The Facility Internal v1.2",
  5. Size = UDim2.fromOffset(600, 400),
  6. Theme = Mercury.Themes.Dark,
  7. Link = "Best Flee the facility GUI"
  8. }
  9.  
  10. GUI:Notification{
  11. Title = "Update:",
  12. Text = "Add on discord for suggestions discord: bedra#3812",
  13. Duration = 5,
  14. Callback = function() end
  15. }
  16.  
  17. GUI:Credit{
  18. Name = "bedra#3812",
  19. Description = "Made by",
  20. V3rm = "bedra45",
  21. Discord = "bedra#3812"
  22. }
  23.  
  24. local Tab6 = GUI:Tab{
  25. Name = "Player Stuff",
  26. Icon = "rbxassetid://8569322835"
  27. }
  28.  
  29. Tab6:Button{
  30. Name = "Respawn",
  31. Description = nil,
  32. Callback = function()
  33. local plr = game.Players.LocalPlayer
  34. plr.Character:Destroy()
  35. end
  36. }
  37.  
  38. Tab6:Button{
  39. Name = "FixCam",
  40. Description = nil,
  41. Callback = function()
  42. local player = game.Players.LocalPlayer
  43.  
  44. workspace.CurrentCamera.CameraSubject = player.Character:FindFirstChildWhichIsA('Humanoid')
  45. workspace.CurrentCamera.CameraType = "Custom"
  46. player.CameraMinZoomDistance = 0.5
  47. player.CameraMaxZoomDistance = math.huge
  48. player.CameraMode = "Classic"
  49. player.Character.Head.Anchored = false
  50. end
  51. }
  52.  
  53. Tab6:Slider{
  54. Name = "WalkSpeed",
  55. Default = 50,
  56. Min = 0,
  57. Max = 100,
  58. Callback = function(value)
  59. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value
  60. end
  61. }
  62.  
  63. Tab6:Slider{
  64. Name = "JumpPower",
  65. Default = 50,
  66. Min = 0,
  67. Max = 100,
  68. Callback = function(value)
  69. game.Players.LocalPlayer.Character.Humanoid.JumpPower = value
  70. end
  71. }
  72.  
  73. Tab6:Toggle{
  74. Name = "Noclip (Must Bypass Anti Cheat)",
  75. StartingState = false,
  76. Description = nil,
  77. Callback = function(state)
  78. if state == true then
  79. getgenv().NoclipLoop = game.RunService.Stepped:Connect(function()
  80. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  81. if v:IsA("BasePart") or v:IsA("Part") or v:IsA("MeshPart") then
  82. v.CanCollide = false
  83. end
  84. end
  85. end)
  86. else
  87. getgenv().NoclipLoop:Disconnect()
  88. end
  89. end
  90. }
  91.  
  92. Tab6:Toggle{
  93. Name = "HitBox",
  94. StartingState = false,
  95. Description = nil,
  96. Callback = function(state)
  97. if state == true then
  98. for i,v in pairs(game.Players:GetChildren()) do
  99. if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  100. pcall(function()
  101. v.Character.HumanoidRootPart.Size = Vector3.new(6.5,6.5,6.5)
  102. v.Character.HumanoidRootPart.Transparency = 0.8
  103. end)
  104. end
  105. end
  106. else
  107. for i,v in pairs(game.Players:GetChildren()) do
  108. if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  109. pcall(function()
  110. v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1)
  111. v.Character.HumanoidRootPart.Transparency = 1
  112. end)
  113. end
  114. end
  115. end
  116. end
  117. }
  118.  
  119. local Tab = GUI:Tab{
  120. Name = "Visuals",
  121. Icon = "rbxassetid://8569322835"
  122. }
  123.  
  124. Tab:Toggle{
  125. Name = "Player ESP",
  126. StartingState = false,
  127. Description = nil,
  128. Callback = function(state)
  129. if state == true then
  130. for i,v in pairs(game.Players:GetChildren()) do
  131. if v:IsA("Player") and v.Name ~= game.Players.LocalPlayer.Name then
  132. pcall(function()
  133. local transparency = 0.5
  134. local Folder = Instance.new("Folder",v.Character)
  135. Folder.Name = v.Name .. "'s ESP"
  136. --Head
  137. local Head = Instance.new("BoxHandleAdornment",Folder)
  138. Head.AlwaysOnTop = true
  139. Head.Adornee = v.Character.Head
  140. Head.ZIndex = 1
  141. Head.Name = "Head"
  142. Head.Transparency = transparency
  143. Head.Size = v.Character.Head.Size
  144. --Torso
  145. local Torso = Instance.new("BoxHandleAdornment",Folder)
  146. Torso.AlwaysOnTop = true
  147. Torso.Adornee = v.Character.Torso
  148. Torso.ZIndex = 1
  149. Torso.Name = "Torso"
  150. Torso.Transparency = transparency
  151. Torso.Size = v.Character.Torso.Size
  152. --Left Arm
  153. local LeftArm = Instance.new("BoxHandleAdornment",Folder)
  154. LeftArm.AlwaysOnTop = true
  155. LeftArm.Adornee = v.Character["Left Arm"]
  156. LeftArm.ZIndex = 1
  157. LeftArm.Name = "LeftArm"
  158. LeftArm.Transparency = transparency
  159. LeftArm.Size = v.Character["Left Arm"].Size
  160. --Right Arm
  161. local RightArm = Instance.new("BoxHandleAdornment",Folder)
  162. RightArm.AlwaysOnTop = true
  163. RightArm.Adornee = v.Character["Right Arm"]
  164. RightArm.ZIndex = 1
  165. RightArm.Name = "RightArm"
  166. RightArm.Transparency = transparency
  167. RightArm.Size = v.Character["Right Arm"].Size
  168. --Right Leg
  169. local RightLeg = Instance.new("BoxHandleAdornment",Folder)
  170. RightLeg.AlwaysOnTop = true
  171. RightLeg.Adornee = v.Character["Right Leg"]
  172. RightLeg.ZIndex = 1
  173. RightLeg.Name = "RightLeg"
  174. RightLeg.Transparency = transparency
  175. RightLeg.Size = v.Character["Right Leg"].Size
  176. --Left Leg
  177. local LeftLeg = Instance.new("BoxHandleAdornment",Folder)
  178. LeftLeg.AlwaysOnTop = true
  179. LeftLeg.Name = "LeftLeg"
  180. LeftLeg.Adornee = v.Character["Left Leg"]
  181. LeftLeg.ZIndex = 1
  182. LeftLeg.Transparency = transparency
  183. LeftLeg.Size = v.Character["Left Leg"].Size
  184. --Colors if beast or not
  185. getgenv().LoopBeastColor = game.RunService.Stepped:Connect(function()
  186. if v.TempPlayerStatsModule.IsBeast.Value == true then
  187. Head.Color3 = Color3.fromRGB(205, 98, 152)
  188. Torso.Color3 = Color3.fromRGB(205, 98, 152)
  189. LeftArm.Color3 = Color3.fromRGB(205, 98, 152)
  190. RightArm.Color3 = Color3.fromRGB(205, 98, 152)
  191. RightLeg.Color3 = Color3.fromRGB(205, 98, 152)
  192. LeftLeg.Color3 = Color3.fromRGB(205, 98, 152)
  193. elseif v.TempPlayerStatsModule.IsBeast.Value == false then
  194. Head.Color3 = Color3.new(225,1,1)
  195. Torso.Color3 = Color3.new(1,1,1)
  196. LeftArm.Color3 = Color3.new(1,1,1)
  197. RightArm.Color3 = Color3.new(1,1,1)
  198. RightLeg.Color3 = Color3.new(1,1,1)
  199. LeftLeg.Color3 = Color3.new(1,1,1)
  200. end
  201. end)
  202. --[[
  203. --BillboardGui
  204. local BillboardGui = Instance.new("BillboardGui",Folder)
  205. BillboardGui.AlwaysOnTop = true
  206. BillboardGui.Enabled = true
  207. BillboardGui.Adornee = v.Character.Head
  208. BillboardGui.Size = UDim2.new(0,100,0,100)
  209. --NameTag
  210. local NameTag = Instance.new("TextLabel",BillboardGui)
  211. NameTag.BackgroundTransparency = 1
  212. NameTag.Size = UDim2.new(0,100,0,10)
  213. if v.TempPlayerStatsModule.IsBeast.Value == true then
  214. NameTag.TextColor3 = Color3.new(1,0,0)
  215. elseif v.TempPlayerStatsModule.IsBeast.Value == false then
  216. NameTag.TextColor3 = Color3.new(1,1,1)
  217. end
  218. NameTag.ZIndex = 10
  219. NameTag.Visible = true
  220. NameTag.TextSize = 20
  221. NameTag.Text = "Name: " .. v.Name
  222. ]]
  223. end)
  224. end
  225. end
  226. else
  227. getgenv().LoopBeastColor:Disconnect()
  228. for i,v in pairs(game.Players:GetChildren()) do
  229. if v:IsA("Player") then
  230. for i,e in pairs(v.Character:GetChildren()) do
  231. if e:IsA("Folder") then
  232. pcall(function()
  233. e:Destroy()
  234. end)
  235. end
  236. end
  237. end
  238. end
  239.  
  240. end
  241. end
  242. }
  243.  
  244. Tab:Toggle{
  245. Name = "Door ESP",
  246. StartingState = false,
  247. Description = nil,
  248. Callback = function(state)
  249. if state == true then
  250. getgenv().DoorESP = false
  251. spawn(function()
  252. --single doors
  253. for i,v in pairs(workspace:GetDescendants()) do
  254. if v.Name == "SingleDoor" then
  255. pcall(function()
  256. local ESP = Instance.new("Highlight")
  257. ESP.Parent = v.Door
  258. end)
  259.  
  260. end
  261. end
  262. wait(1)
  263.  
  264. for i,v in pairs(workspace:GetDescendants()) do
  265. if v.Name == "SingleDoor" then
  266. spawn(function()
  267. while true do
  268. pcall(function()
  269. if v.DoorTrigger.ActionSign.Value == 11 then
  270. v.Door.Highlight.FillColor = Color3.new(0,1,0)
  271. elseif v.DoorTrigger.ActionSign.Value == 10 then
  272. v.Door.Highlight.FillColor = Color3.new(1,0,0)
  273. end
  274. end)
  275. if getgenv().DoorESP == true then
  276. break;
  277. end
  278. wait(0.1)
  279. end
  280. end)
  281.  
  282.  
  283. end
  284. end
  285.  
  286. end)
  287. --double doors
  288. spawn(function()
  289. for i,v in pairs(workspace:GetDescendants()) do
  290. if v.Name == "DoubleDoor" then
  291. pcall(function()
  292. local ESP = Instance.new("Highlight")
  293. ESP.Parent = v
  294. end)
  295.  
  296. end
  297. end
  298. wait(1)
  299.  
  300. for i,v in pairs(workspace:GetDescendants()) do
  301. if v.Name == "DoubleDoor" then
  302. spawn(function()
  303. while true do
  304. pcall(function()
  305. if v.DoorTrigger.ActionSign.Value == 11 then
  306. v.Highlight.FillColor = Color3.new(0,1,0)
  307. elseif v.DoorTrigger.ActionSign.Value == 10 then
  308. v.Highlight.FillColor = Color3.new(1,0,0)
  309. end
  310. end)
  311. if getgenv().DoorESP == true then
  312. print("Stopped itLop!2")
  313. break;
  314. end
  315. wait(0.1)
  316. end
  317. end)
  318. end
  319. end
  320. end)
  321. else
  322. getgenv().DoorESP = true
  323. --signle door
  324. for i,v in pairs(workspace:GetDescendants()) do
  325. if v.Name == "SingleDoor" then
  326. pcall(function()
  327. v.Door.Highlight:Destroy()
  328. end)
  329.  
  330. end
  331. end
  332.  
  333. --double doors
  334. for i,v in pairs(workspace:GetDescendants()) do
  335. if v.Name == "DoubleDoor" then
  336. pcall(function()
  337. v.Highlight:Destroy()
  338. end)
  339.  
  340. end
  341. end
  342. end
  343. end
  344. }
  345.  
  346. Tab:Toggle{
  347. Name = "Computer ESP",
  348. StartingState = false,
  349. Description = nil,
  350. Callback = function(state)
  351. if state == true then
  352. getgenv().StopComputerESP = false
  353. for i,v in pairs(workspace:GetDescendants()) do
  354. if v.Name == "ComputerTable" then
  355. pcall(function()
  356. local ESP = Instance.new("Highlight",v)
  357. end)
  358. end
  359. end
  360.  
  361. spawn(function()
  362. while true do
  363. for i,v in pairs(workspace:GetDescendants()) do
  364. if v.Name == "ComputerTable" then
  365. if v.Screen.BrickColor == BrickColor.new("Bright blue") then
  366. pcall(function()
  367. v.Highlight.FillColor = Color3.new(0,0,1)
  368. end)
  369. elseif v.Screen.BrickColor == BrickColor.new("Dark green") then
  370. pcall(function()
  371. v.Highlight.FillColor = Color3.new(0,1,0)
  372. end)
  373. end
  374. if getgenv().StopComputerESP == true then
  375. print("Stopped itLop!PC")
  376. break;
  377. end
  378. end
  379. end
  380. wait(1)
  381. end
  382. end)
  383. else
  384. getgenv().StopComputerESP = true
  385. for i,v in pairs(workspace:GetDescendants()) do
  386. if v.Name == "ComputerTable" then
  387. pcall(function()
  388. v.Highlight:Destroy()
  389. end)
  390. end
  391. end
  392. end
  393. end
  394. }
  395.  
  396. Tab:Toggle{
  397. Name = "FreezePod ESP",
  398. StartingState = false,
  399. Description = nil,
  400. Callback = function(state)
  401. if state == true then
  402. for i,v in pairs(workspace:GetDescendants()) do
  403. if v.Name == "FreezePod" then
  404. pcall(function()
  405. local ESP = Instance.new("Highlight",v)
  406. end)
  407. end
  408. end
  409. else
  410. for i,v in pairs(workspace:GetDescendants()) do
  411. if v.Name == "FreezePod" then
  412. pcall(function()
  413. v.Highlight:Destroy()
  414. end)
  415. end
  416. end
  417. end
  418. end
  419. }
  420.  
  421.  
  422.  
  423. local Tab2 = GUI:Tab{
  424. Name = "Beast",
  425. Icon = "rbxassetid://8569322835"
  426. }
  427. Tab2:Button{
  428. Name = "Inf Stamina",
  429. Description = nil,
  430. Callback = function()
  431. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  432. game.UserInputService.InputBegan:Connect(function(key)
  433. if key.KeyCode == Enum.KeyCode.Q then
  434. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
  435. end
  436. end)
  437.  
  438. game.UserInputService.InputEnded:Connect(function(key)
  439. if key.KeyCode == Enum.KeyCode.Q then
  440. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  441. end
  442. end)
  443.  
  444. pcall(function()
  445. game.Players.LocalPlayer.Character.PowersLocalScript:Destroy()
  446. end)
  447. else
  448. GUI:Notification{
  449. Title = "Alert!",
  450. Text = "Your not the beast >:((",
  451. Duration = 5,
  452. Callback = function() end
  453. }
  454. end
  455. end
  456. }
  457.  
  458. Tab2:Button{
  459. Name = "No Slow",
  460. Description = nil,
  461. Callback = function()
  462. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  463. pcall(function()
  464. game.Players.LocalPlayer.Character.PowersLocalScript:Destroy()
  465. end)
  466. else
  467. GUI:Notification{
  468. Title = "Alert!",
  469. Text = "Your not the beast >:((",
  470. Duration = 5,
  471. Callback = function() end
  472. }
  473. end
  474. end
  475. }
  476.  
  477. Tab2:Button{
  478. Name = "Enable Crawl",
  479. Description = nil,
  480. Callback = function()
  481. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  482. game:GetService("Players").LocalPlayer.TempPlayerStatsModule.DisableCrawl.Value = false
  483. else
  484. GUI:Notification{
  485. Title = "Alert!",
  486. Text = "Your not the beast >:((",
  487. Duration = 5,
  488. Callback = function() end
  489. }
  490. end
  491. end
  492. }
  493.  
  494. Tab2:Button{
  495. Name = "Remove Sounds and Glow",
  496. Description = nil,
  497. Callback = function()
  498. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  499. for i,v in pairs(game.Players.LocalPlayer.Character.Hammer.Handle:GetChildren()) do
  500. if v:IsA("Sound") then
  501. pcall(function()
  502. v:Destroy()
  503. end)
  504. end
  505. end
  506.  
  507. pcall(function()
  508. game.Players.LocalPlayer.Character.Gemstone.Handle.PointLight:Destroy()
  509. end)
  510. else
  511. GUI:Notification{
  512. Title = "Alert!",
  513. Text = "Your not the beast >:((",
  514. Duration = 5,
  515. Callback = function() end
  516. }
  517. end
  518. end
  519. }
  520.  
  521. Tab2:Button{
  522. Name = "Bug Game Forever",
  523. Description = nil,
  524. Callback = function()
  525. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  526. game.Players.LocalPlayer.Character:Destroy()
  527. else
  528. GUI:Notification{
  529. Title = "Alert!",
  530. Text = "Your not the beast >:((",
  531. Duration = 5,
  532. Callback = function() end
  533. }
  534. end
  535. end
  536. }
  537.  
  538. Tab2:Toggle{
  539. Name = "Auto tie",
  540. StartingState = false,
  541. Description = nil,
  542. Callback = function(state)
  543. if state == true then
  544. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  545. getgenv().StopTheShit = false
  546. while wait() do
  547. if game:GetService("Players").LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  548. local Players = game:GetService("Players")
  549. local lp = Players.LocalPlayer
  550.  
  551. local function GetClosestPlayer()
  552. local target = nil
  553. local distance = math.huge
  554.  
  555. for i,v in next, Players:GetPlayers() do
  556. if v and v ~= lp and v.Character and v.Character:FindFirstChildOfClass('Humanoid') and v.Character:FindFirstChildOfClass('Humanoid').RootPart then
  557. local plrdist = lp:DistanceFromCharacter(v.Character:FindFirstChildOfClass('Humanoid').RootPart.CFrame.p)
  558. if plrdist < distance then
  559. target = v
  560. distance = plrdist
  561. end
  562. end
  563. end
  564.  
  565. return target
  566. end
  567.  
  568. print(GetClosestPlayer().Name)
  569. local args = {
  570. [1] = "HammerTieUp",
  571. [2] = GetClosestPlayer().Character.Torso,
  572. [3] = GetClosestPlayer().Character.HumanoidRootPart.Position
  573. }
  574.  
  575. game:GetService("Players").LocalPlayer.Character.Hammer.HammerEvent:FireServer(unpack(args))
  576. end
  577. if getgenv().StopTheShit == true then
  578. break;
  579. end
  580. end
  581. else
  582. GUI:Notification{
  583. Title = "Alert!",
  584. Text = "Your not the beast>:(",
  585. Duration = 3,
  586. Callback = function() end
  587. }
  588. end
  589. else
  590. getgenv().StopTheShit = true
  591. end
  592. end
  593. }
  594.  
  595. local Tab3 = GUI:Tab{
  596. Name = "Non Beast",
  597. Icon = "rbxassetid://8569322835"
  598. }
  599. Tab3:Button{
  600. Name = "Q to sprint forever",
  601. Description = nil,
  602. Callback = function()
  603. game.UserInputService.InputBegan:Connect(function(key)
  604. if key.KeyCode == Enum.KeyCode.Q then
  605. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
  606. end
  607. end)
  608.  
  609. game.UserInputService.InputEnded:Connect(function(key)
  610. if key.KeyCode == Enum.KeyCode.Q then
  611. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  612. end
  613. end)
  614.  
  615. pcall(function()
  616. game.Players.LocalPlayer.Character.PowersLocalScript:Destroy()
  617. end)
  618. end
  619. }
  620.  
  621. Tab3:Button{
  622. Name = "No error on hack",
  623. Description = nil,
  624. Callback = function()
  625. spawn(function()
  626. while wait() do
  627. game.ReplicatedStorage.RemoteEvent:FireServer("SetPlayerMinigameResult",true)
  628. end
  629. end)
  630. end
  631. }
  632.  
  633. local Tab4 = GUI:Tab{
  634. Name = "Tp to pcs",
  635. Icon = "rbxassetid://8569322835"
  636. }
  637.  
  638.  
  639. Tab4:Button{
  640. Name = "Bypass Anti Cheat (dont if beast)",
  641. Description = nil,
  642. Callback = function()
  643. if game.Players.LocalPlayer.TempPlayerStatsModule.IsBeast.Value == true then
  644. GUI:Notification{
  645. Title = "Alert!",
  646. Text = "Your the beast dont bypass anti cheat if ur the beast>:((",
  647. Duration = 3,
  648. Callback = function() end
  649. }
  650. else
  651. local character = game.Players.LocalPlayer.Character
  652. local torso = character:FindFirstChild("Torso") or character:FindFirstChild("UpperTorso")
  653. local root = character:FindFirstChild("HumanoidRootPart")
  654. local head = character:FindFirstChild("Head")
  655. character.Parent = nil
  656. root.Parent = nil
  657. wait(0.5)
  658. local fake = torso:Clone()
  659. fake.Parent = character
  660. torso.Name = "HumanoidRootPart"
  661. torso.Transparency = 1
  662. getgenv().Torsoo = torso
  663. character.Parent = workspace
  664. end
  665. end
  666. }
  667.  
  668. local MyDropdown = Tab4:Dropdown{
  669. Name = "Pcs (Must bypass anti cheat)",
  670. StartingText = "Select...",
  671. Description = nil,
  672. Items = {
  673. {"Pc1",1}, -- {name, value}
  674. {"Pc2",2},
  675. {"Pc3",3},
  676. {"Pc4",4},
  677. {"Pc5",5},-- or just value, which is also automatically taken as name
  678. {"Pc6",6}
  679. },
  680. Callback = function(item)
  681. if item == 1 then
  682. for i,v in pairs(workspace:GetDescendants()) do
  683. if v.Name == "FreezePod" then
  684. local map = v.Parent
  685. pcall(function()
  686. map.ComputerTable.Name = "ComputerTable1"
  687. map.ComputerTable.Name = "ComputerTable2"
  688. map.ComputerTable.Name = "ComputerTable3"
  689. map.ComputerTable.Name = "ComputerTable4"
  690. map.ComputerTable.Name = "ComputerTable5"
  691. map.ComputerTable.Name = "ComputerTable6"
  692. end)
  693.  
  694. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable1.ComputerTrigger3.CFrame
  695. end
  696. end
  697. elseif item == 2 then
  698. for i,v in pairs(workspace:GetDescendants()) do
  699. if v.Name == "FreezePod" then
  700. local map = v.Parent
  701. pcall(function()
  702. map.ComputerTable.Name = "ComputerTable1"
  703. map.ComputerTable.Name = "ComputerTable2"
  704. map.ComputerTable.Name = "ComputerTable3"
  705. map.ComputerTable.Name = "ComputerTable4"
  706. map.ComputerTable.Name = "ComputerTable5"
  707. map.ComputerTable.Name = "ComputerTable6"
  708. end)
  709.  
  710. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable2.ComputerTrigger3.CFrame
  711. end
  712. end
  713. elseif item == 3 then
  714. for i,v in pairs(workspace:GetDescendants()) do
  715. if v.Name == "FreezePod" then
  716. local map = v.Parent
  717. pcall(function()
  718. map.ComputerTable.Name = "ComputerTable1"
  719. map.ComputerTable.Name = "ComputerTable2"
  720. map.ComputerTable.Name = "ComputerTable3"
  721. map.ComputerTable.Name = "ComputerTable4"
  722. map.ComputerTable.Name = "ComputerTable5"
  723. map.ComputerTable.Name = "ComputerTable6"
  724. end)
  725.  
  726. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable3.ComputerTrigger3.CFrame
  727. end
  728. end
  729. elseif item == 4 then
  730. for i,v in pairs(workspace:GetDescendants()) do
  731. if v.Name == "FreezePod" then
  732. local map = v.Parent
  733. pcall(function()
  734. map.ComputerTable.Name = "ComputerTable1"
  735. map.ComputerTable.Name = "ComputerTable2"
  736. map.ComputerTable.Name = "ComputerTable3"
  737. map.ComputerTable.Name = "ComputerTable4"
  738. map.ComputerTable.Name = "ComputerTable5"
  739. map.ComputerTable.Name = "ComputerTable6"
  740. end)
  741.  
  742. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable4.ComputerTrigger3.CFrame
  743. end
  744. end
  745. elseif item == 5 then
  746. for i,v in pairs(workspace:GetDescendants()) do
  747. if v.Name == "FreezePod" then
  748. local map = v.Parent
  749. pcall(function()
  750. map.ComputerTable.Name = "ComputerTable1"
  751. map.ComputerTable.Name = "ComputerTable2"
  752. map.ComputerTable.Name = "ComputerTable3"
  753. map.ComputerTable.Name = "ComputerTable4"
  754. map.ComputerTable.Name = "ComputerTable5"
  755. map.ComputerTable.Name = "ComputerTable6"
  756. end)
  757.  
  758. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable5.ComputerTrigger3.CFrame
  759. end
  760. end
  761. elseif item == 6 then
  762. for i,v in pairs(workspace:GetDescendants()) do
  763. if v.Name == "FreezePod" then
  764. local map = v.Parent
  765. pcall(function()
  766. map.ComputerTable.Name = "ComputerTable1"
  767. map.ComputerTable.Name = "ComputerTable2"
  768. map.ComputerTable.Name = "ComputerTable3"
  769. map.ComputerTable.Name = "ComputerTable4"
  770. map.ComputerTable.Name = "ComputerTable5"
  771. map.ComputerTable.Name = "ComputerTable6"
  772. end)
  773.  
  774. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = map.ComputerTable6.ComputerTrigger3.CFrame
  775. end
  776. end
  777. end
  778. return
  779. end
  780. }
  781.  
  782. Tab4:Button{
  783. Name = "Visible and Invisible (Must bypass anti cheat Keybind: f)",
  784. Description = nil,
  785. Callback = function()
  786. local Global = getgenv and getgenv()
  787. local First = true
  788. local Restart = true
  789. local SoundService = game:GetService("SoundService")
  790. local StoredCF
  791. local SafeZone
  792. if Global.SafeZone ~= nil then
  793. if type(Global.SafeZone) ~= "userdata" then return error("CFrame must be a userdata (CFrame.new(X, X, X)") end
  794. SafeZone = Global.SafeZone
  795. else
  796. SafeZone = CFrame.new(0,-300,0)
  797. end
  798.  
  799. local ScriptStart = true
  800. local Reset = false
  801. local DeleteOnDeath = {}
  802. local Activate
  803. local Noclip
  804. if Global.Key == nil then
  805. Activate = "F"
  806. else
  807. Activate = tostring(Global.Key)
  808. end
  809.  
  810. if Global.Noclip == nil then
  811. Noclip = false
  812. else
  813. Noclip = Global.Noclip
  814. end
  815.  
  816. if type(Noclip) ~= "boolean" then return error("Noclip value isn't a boolean") end
  817.  
  818. function notify(Message)
  819. game:GetService("StarterGui"):SetCore("SendNotification", {
  820. Title = "FE Invisible";
  821. Text = Message;
  822. Icon = "rbxthumb://type=Asset&id=5107182114&w=150&h=150"})
  823. local sound = Instance.new("Sound")
  824. sound.SoundId = "rbxassetid://7046168694"
  825. SoundService:PlayLocalSound(sound)
  826. end
  827.  
  828. if Global.Running then
  829. return notify("Script is already running")
  830. else
  831. Global.Running = true
  832. end
  833.  
  834. local IsInvisible = false
  835. local WasInvisible = false
  836. local Died = false
  837. local LP = game:GetService("Players").LocalPlayer
  838. local UserInputService = game:GetService("UserInputService")
  839. repeat wait() until LP.Character
  840. repeat wait() until LP.Character:FindFirstChild("Humanoid")
  841. local RealChar = LP.Character or LP.CharacterAdded:Wait()
  842. RealChar.Archivable = true
  843. local FakeChar = RealChar:Clone()
  844. FakeChar:WaitForChild("Humanoid").DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  845. FakeChar.Parent = game:GetService("Workspace")
  846.  
  847. for _, child in pairs(FakeChar:GetDescendants()) do
  848. if child:IsA("BasePart") and child.CanCollide == true then
  849. child.CanCollide = false
  850. end
  851. end
  852.  
  853. FakeChar:SetPrimaryPartCFrame(SafeZone * CFrame.new(0, 5, 0))
  854.  
  855. local Part
  856. Part = Instance.new("Part", workspace)
  857. Part.Anchored = true
  858. Part.Size = Vector3.new(200, 1, 200)
  859. Part.CFrame = SafeZone
  860. Part.CanCollide = true
  861.  
  862.  
  863. for i, v in pairs(FakeChar:GetDescendants()) do
  864. if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
  865. v.Transparency = 0.7
  866. end
  867. end
  868.  
  869. for i, v in pairs(RealChar:GetChildren()) do
  870. if v:IsA("LocalScript") then
  871. local clone = v:Clone()
  872. clone.Disabled = true
  873. clone.Parent = FakeChar
  874. end
  875. end
  876.  
  877. function StopScript()
  878. if ScriptStart == false then return end
  879. if Died == false then
  880. if Restart == true then
  881. notify("The character used died!\nStopping...")
  882. else
  883. notify("Script successfuly ended !")
  884. end
  885. Part:Destroy()
  886. if IsInvisible and RealChar:FindFirstChild("HumanoidRootPart") then
  887. Visible()
  888. WasInvisible = true
  889. end
  890.  
  891. if IsInvisible == false and LP.Character:WaitForChild("Humanoid").Health == 0 then
  892. WasInvisible = true
  893. end
  894. if not RealChar:FindFirstChild("Humanoid") then
  895. Reset = true
  896. print("a")
  897. end
  898.  
  899. game:GetService("Workspace").CurrentCamera.CameraSubject = RealChar:WaitForChild("Humanoid")
  900.  
  901. if FakeChar then
  902. FakeChar:Destroy()
  903. end
  904.  
  905. if WasInvisible then
  906. local char = LP.Character
  907. if char:FindFirstChildOfClass("Humanoid") then char:FindFirstChildOfClass("Humanoid"):ChangeState(15) end
  908. char:ClearAllChildren()
  909. local newChar = Instance.new("Model")
  910. newChar.Parent = workspace
  911. LP.Character = newChar
  912. wait()
  913. LP.Character = char
  914. newChar:Destroy()
  915. for _,v in pairs(DeleteOnDeath) do
  916. v:Destroy()
  917. end
  918.  
  919. else
  920. for _,v in pairs(DeleteOnDeath) do
  921. v.ResetOnSpawn = true
  922. end
  923. end
  924. Global.Running = false
  925. ScriptStart = false
  926. if Restart == true then
  927. loadstring(game:HttpGet('https://raw.githubusercontent.com/Error-Cezar/Roblox-Scripts/main/FE-Invisible.lua'))()
  928. end
  929.  
  930. LP.CharacterAdded:Connect(function()
  931. if Reset == false then return end
  932. loadstring(game:HttpGet('https://raw.githubusercontent.com/Error-Cezar/Roblox-Scripts/main/FE-Invisible.lua'))()
  933. end)
  934.  
  935. end
  936. end
  937.  
  938. RealChar:WaitForChild("Humanoid").Died:Connect(function()
  939. StopScript()
  940. end)
  941.  
  942.  
  943. FakeChar:WaitForChild("Humanoid").Died:Connect(function()
  944. StopScript()
  945. end)
  946.  
  947. function Invisible()
  948. StoredCF = RealChar:GetPrimaryPartCFrame()
  949.  
  950. if First == true then
  951. First = false
  952. for _,v in pairs(LP:WaitForChild("PlayerGui"):GetChildren()) do
  953. if v:IsA("ScreenGui") then
  954. if v.ResetOnSpawn == true then
  955. v.ResetOnSpawn = false
  956. table.insert(DeleteOnDeath, v)
  957. end
  958. end
  959. end
  960. end
  961.  
  962. if Noclip == true then
  963. for _, child in pairs(FakeChar:GetDescendants()) do
  964. if child:IsA("BasePart") and child.CanCollide == true then
  965. child.CanCollide = false
  966. end
  967. end
  968. end
  969. FakeChar:SetPrimaryPartCFrame(StoredCF)
  970. FakeChar:WaitForChild("HumanoidRootPart").Anchored = false
  971. LP.Character = FakeChar
  972. game:GetService("Workspace").CurrentCamera.CameraSubject = FakeChar:WaitForChild("Humanoid")
  973. for _, child in pairs(RealChar:GetDescendants()) do
  974. if child:IsA("BasePart") and child.CanCollide == true then
  975. child.CanCollide = false
  976. end
  977. end
  978.  
  979. RealChar:SetPrimaryPartCFrame(SafeZone * CFrame.new(0, 5, 0))
  980. -- RealChar:WaitForChild("HumanoidRootPart").Anchored = true
  981. RealChar:WaitForChild("Humanoid"):UnequipTools()
  982.  
  983. for i, v in pairs(FakeChar:GetChildren()) do
  984. if v:IsA("LocalScript") then
  985. v.Disabled = false
  986. end
  987. end
  988. end
  989.  
  990. function Visible()
  991. StoredCF = FakeChar:GetPrimaryPartCFrame()
  992. for _, child in pairs(RealChar:GetDescendants()) do
  993. if child:IsA("BasePart") and child.CanCollide == true then
  994. child.CanCollide = true
  995. end
  996. end
  997. RealChar:WaitForChild("HumanoidRootPart").Anchored = false
  998. RealChar:SetPrimaryPartCFrame(StoredCF)
  999. LP.Character = RealChar
  1000. FakeChar:WaitForChild("Humanoid"):UnequipTools()
  1001. game:GetService("Workspace").CurrentCamera.CameraSubject = RealChar:WaitForChild("Humanoid")
  1002. for _, child in pairs(FakeChar:GetDescendants()) do
  1003. if child:IsA("BasePart") and child.CanCollide == true then
  1004. child.CanCollide = false
  1005. end
  1006. end
  1007. FakeChar:SetPrimaryPartCFrame(SafeZone * CFrame.new(0, 5, 0))
  1008. FakeChar:WaitForChild("HumanoidRootPart").Anchored = true
  1009. for i, v in pairs(FakeChar:GetChildren()) do
  1010. if v:IsA("LocalScript") then
  1011. v.Disabled = true
  1012. end
  1013. end
  1014. end
  1015.  
  1016.  
  1017. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  1018. if ScriptStart == false then return end
  1019. if gameProcessed then return end
  1020. if input.KeyCode.Name:lower() ~= Activate:lower() then return end
  1021. if IsInvisible == false then
  1022. Invisible()
  1023. IsInvisible = true
  1024. else
  1025. Visible()
  1026. IsInvisible = false
  1027. end
  1028. end)
  1029. end
  1030. }
  1031.  
  1032.  
  1033. local Tab5 = GUI:Tab{
  1034. Name = "Misc",
  1035. Icon = "rbxassetid://8569322835"
  1036. }
  1037.  
  1038. Tab5:Button{
  1039. Name = "Close trade GUI",
  1040. Description = nil,
  1041. Callback = function()
  1042. if game.PlaceId == 1738581510 then
  1043. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.TradingMenuWindow.Visible = false
  1044.  
  1045. GUI:Notification{
  1046. Title = "Alert!",
  1047. Text = "Visual scam wont work if u close the gui while doing the visual scam.",
  1048. Duration = 5,
  1049. Callback = function() end
  1050. }
  1051. else
  1052. GUI:Notification{
  1053. Title = "Alert!",
  1054. Text = "Your not in the trading server Join it!! >:(",
  1055. Duration = 3,
  1056. Callback = function() end
  1057. }
  1058. end
  1059. end
  1060. }
  1061.  
  1062. Tab5:Button{
  1063. Name = "Visual Scam",
  1064. Description = nil,
  1065. Callback = function()
  1066. if game.PlaceId == 1738581510 then
  1067. firesignal(game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.TradingMenuWindow.TopBar.CloseButton.MouseButton1Click)
  1068. wait(3)
  1069. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.TradingMenuWindow.Visible = true
  1070. else
  1071. GUI:Notification{
  1072. Title = "Alert!",
  1073. Text = "Your not in the trading server Join it!! >:(",
  1074. Duration = 3,
  1075. Callback = function() end
  1076. }
  1077. end
  1078. end
  1079. }
  1080.  
  1081. Tab5:Textbox{
  1082. Name = "Send trade",
  1083. Callback = function(text)
  1084. local args = {
  1085. [1] = "SendTradeRequest",
  1086. [2] = game.Players[text].UserId
  1087. }
  1088.  
  1089. game:GetService("ReplicatedStorage"):WaitForChild("RemoteEvent"):FireServer(unpack(args))
  1090. end
  1091. }
  1092.  
  1093. Tab5:Button{
  1094. Name = "Inf Credits (Only works on Bundles)",
  1095. Description = nil,
  1096. Callback = function()
  1097. print("This only works on bundles")
  1098. while wait() do
  1099. game:GetService("Players").LocalPlayer.SavedPlayerStatsModule.Credits.Value = 10000000000
  1100. end
  1101. end
  1102. }
  1103.  
  1104. local MyDropdown = Tab5:Dropdown{
  1105. Name = "Buy unavailable bundles (go to shop to buy it)",
  1106. StartingText = "Select...",
  1107. Description = nil,
  1108. Items = {
  1109. {"2ndAniversaryBundle (Rarest)",1},
  1110. {"AnniversaryClassicBundle",2},
  1111. {"SpookySweetsBundle",3}
  1112. },
  1113. Callback = function(item)
  1114. if item == 1 then
  1115. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.LocalScript.Enabled = true
  1116. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.Visible = true
  1117.  
  1118. local hi = require(game:GetService("ReplicatedStorage").DeveloperProductIds);
  1119.  
  1120. hi["RedNutcrackerBundle"] = 592709755
  1121. elseif item == 2 then
  1122. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.LocalScript.Enabled = true
  1123. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.Visible = true
  1124.  
  1125. local hi = require(game:GetService("ReplicatedStorage").DeveloperProductIds);
  1126.  
  1127. hi["RedNutcrackerBundle"] = 307455363
  1128. elseif item == 3 then
  1129. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.LocalScript.Enabled = true
  1130. game:GetService("Players").LocalPlayer.PlayerGui.MenusScreenGui.ShopMenuWindow.Body.SideBarTabsFrame.BuyBundleButton2.Visible = true
  1131.  
  1132. local hi = require(game:GetService("ReplicatedStorage").DeveloperProductIds);
  1133.  
  1134. hi["RedNutcrackerBundle"] = 1111394671
  1135. end
  1136. return
  1137. end
  1138. }
Advertisement
Add Comment
Please, Sign In to add comment