Advertisement
eggStudioz_YT

flee the facility op script

Feb 20th, 2025 (edited)
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. -- Create the huge part above the map
  2. local part = Instance.new("Part")
  3. part.Parent = game.Workspace
  4. part.Size = Vector3.new(500, 500, 500) -- Size of the part (500 x 500 x 500)
  5. part.Position = Vector3.new(0, 1000, 0) -- Position of the part above the map (adjust as needed)
  6. part.Anchored = true
  7. part.CanCollide = false
  8. part.BrickColor = BrickColor.new("Bright red") -- Color of the part (optional)
  9.  
  10. -- Get the local player
  11. local player = game.Players.LocalPlayer
  12.  
  13. -- Create the GUI
  14. local screenGui = Instance.new("ScreenGui")
  15. screenGui.Parent = player.PlayerGui
  16. screenGui.Name = "AutoFarmGui"
  17.  
  18. -- Full black background
  19. local frame = Instance.new("Frame")
  20. frame.Parent = screenGui
  21. frame.Size = UDim2.new(1, 0, 1, 0) -- Full screen size
  22. frame.Position = UDim2.new(0, 0, 0, 0)
  23. frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. frame.BackgroundTransparency = 0 -- Solid black background
  25. frame.BorderSizePixel = 0
  26.  
  27. -- Text Label for the main message
  28. local label = Instance.new("TextLabel")
  29. label.Parent = frame
  30. label.Size = UDim2.new(0.4, 0, 0.2, 0)
  31. label.Position = UDim2.new(0.3, 0, 0.4, 0)
  32. label.Text = "AUTOFARM IN PROGRESS\n\nMade By eggStudioz On YT\nJoin dc.gg/egg_x for a free roblox executor"
  33. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. label.TextSize = 18
  35. label.TextWrap = true
  36. label.TextAlign = Enum.TextAnchor.MiddleCenter
  37.  
  38. -- Teleport player to the huge part 9847569845698425984259824 times
  39. local teleportCount = 0
  40. local teleportLimit = 9847569845698425984259824 -- Very large number
  41. local startTime = tick() -- Get the current time
  42.  
  43. while teleportCount < teleportLimit do
  44. -- Teleport player to the huge part
  45. player.Character.HumanoidRootPart.CFrame = part.CFrame
  46. teleportCount = teleportCount + 1
  47. wait(0.1) -- Add a delay to prevent performance overload
  48. end
  49.  
  50. -- Wait for 15 minutes and reset avatar
  51. local resetTime = 15 * 60 -- 15 minutes in seconds
  52. while tick() - startTime < resetTime do
  53. wait(1)
  54. end
  55.  
  56. -- Reset avatar (optional)
  57. player:LoadCharacter()
  58.  
  59. -- Remove the GUI after reset
  60. screenGui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement