Advertisement
GardenScript

Loading screen

Jun 18th, 2025 (edited)
31
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.92 KB | None | 0 0
  1. -- Full Roblox Loading UI with Realistic Fake Logs, Glow, Bounce, and Oval Bar
  2.  
  3. local TweenService = game:GetService("TweenService")
  4.  
  5. -- UI Setup
  6. local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
  7. ScreenGui.IgnoreGuiInset = true
  8. ScreenGui.ResetOnSpawn = false
  9.  
  10. local Frame = Instance.new("Frame", ScreenGui)
  11. Frame.Size = UDim2.new(1, 0, 1, 0)
  12. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  13. Frame.BackgroundTransparency = 1
  14.  
  15. -- Title (Lowered)
  16. local Title = Instance.new("TextLabel", Frame)
  17. Title.Text = "Loading Script - Grow A Garden 🌴"
  18. Title.Size = UDim2.new(1, 0, 0, 50)
  19. Title.Position = UDim2.new(0, 0, 0.45, -80)
  20. Title.BackgroundTransparency = 1
  21. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  22. Title.TextScaled = true
  23. Title.Font = Enum.Font.SourceSansBold
  24.  
  25. -- Progress Bar Background (Oval)
  26. local BarBackground = Instance.new("Frame", Frame)
  27. BarBackground.Size = UDim2.new(0.6, 0, 0, 30)
  28. BarBackground.Position = UDim2.new(0.2, 0, 0.5, -15)
  29. BarBackground.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  30. BarBackground.BorderSizePixel = 0
  31. BarBackground.ClipsDescendants = true
  32. Instance.new("UICorner", BarBackground).CornerRadius = UDim.new(1, 0)
  33.  
  34. -- Progress Fill
  35. local ProgressBar = Instance.new("Frame", BarBackground)
  36. ProgressBar.Size = UDim2.new(0, 0, 1, 0)
  37. ProgressBar.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  38. ProgressBar.BorderSizePixel = 0
  39. Instance.new("UICorner", ProgressBar).CornerRadius = UDim.new(1, 0)
  40.  
  41. -- Percent Text
  42. local PercentText = Instance.new("TextLabel", BarBackground)
  43. PercentText.Text = "0%"
  44. PercentText.Size = UDim2.new(1, 0, 1, 0)
  45. PercentText.BackgroundTransparency = 1
  46. PercentText.TextColor3 = Color3.fromRGB(255, 255, 255)
  47. PercentText.TextScaled = true
  48. PercentText.Font = Enum.Font.SourceSansBold
  49.  
  50. -- Analyzing File Text
  51. local AnalyzingText = Instance.new("TextLabel", Frame)
  52. AnalyzingText.Size = UDim2.new(1, 0, 0, 30)
  53. AnalyzingText.Position = UDim2.new(0, 0, 0.5, 25)
  54. AnalyzingText.BackgroundTransparency = 1
  55. AnalyzingText.TextColor3 = Color3.fromRGB(200, 255, 200)
  56. AnalyzingText.TextScaled = true
  57. AnalyzingText.Font = Enum.Font.SourceSansItalic
  58. AnalyzingText.Text = "Loading..."
  59.  
  60. -- Wait 10 Minutes Message (Glowing)
  61. local Message = Instance.new("TextLabel", Frame)
  62. Message.Text = "Please wait up to 10 minutes to prepare your script..."
  63. Message.Size = UDim2.new(1, 0, 0, 30)
  64. Message.Position = UDim2.new(0, 0, 0.5, 60)
  65. Message.BackgroundTransparency = 1
  66. Message.TextColor3 = Color3.fromRGB(220, 220, 220)
  67. Message.TextScaled = true
  68. Message.Font = Enum.Font.SourceSans
  69.  
  70. -- Fade In/Out Tip
  71. local FadeText = Instance.new("TextLabel", Frame)
  72. FadeText.Text = "If you got kicked please rejoin, patient is the key"
  73. FadeText.Size = UDim2.new(1, 0, 0, 30)
  74. FadeText.Position = UDim2.new(0, 0, 0.5, 95)
  75. FadeText.BackgroundTransparency = 1
  76. FadeText.TextColor3 = Color3.fromRGB(255, 200, 200)
  77. FadeText.TextScaled = true
  78. FadeText.Font = Enum.Font.SourceSans
  79.  
  80. -- Fade-In Background
  81. for i = 1, 20 do
  82.     task.wait(0.05)
  83.     Frame.BackgroundTransparency = math.clamp(Frame.BackgroundTransparency - 0.05, 0, 1)
  84. end
  85.  
  86. -- Bounce Title
  87. task.spawn(function()
  88.     while true do
  89.         local up = TweenService:Create(Title, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {
  90.             Position = Title.Position + UDim2.new(0, 0, -0.02, 0)
  91.         })
  92.         local down = TweenService:Create(Title, TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.In), {
  93.             Position = UDim2.new(0, 0, 0.45, -80)
  94.         })
  95.         up:Play()
  96.         up.Completed:Wait()
  97.         down:Play()
  98.         down.Completed:Wait()
  99.     end
  100. end)
  101.  
  102. -- Glow Title
  103. task.spawn(function()
  104.     while true do
  105.         for i = 1, 5 do
  106.             Title.TextColor3 = Color3.fromRGB(200 + i * 10, 255, 200 + i * 10)
  107.             task.wait(0.05)
  108.         end
  109.         for i = 5, 1, -1 do
  110.             Title.TextColor3 = Color3.fromRGB(200 + i * 10, 255, 200 + i * 10)
  111.             task.wait(0.05)
  112.         end
  113.     end
  114. end)
  115.  
  116. -- Glow "Wait 10 Minutes" Text
  117. task.spawn(function()
  118.     while true do
  119.         for i = 1, 5 do
  120.             Message.TextColor3 = Color3.fromRGB(200 + i * 10, 230 + i * 5, 200 + i * 10)
  121.             task.wait(0.05)
  122.         end
  123.         for i = 5, 1, -1 do
  124.             Message.TextColor3 = Color3.fromRGB(200 + i * 10, 230 + i * 5, 200 + i * 10)
  125.             task.wait(0.05)
  126.         end
  127.     end
  128. end)
  129.  
  130. -- Fade Reminder Text
  131. task.spawn(function()
  132.     while true do
  133.         for i = 0, 1, 0.05 do
  134.             FadeText.TextTransparency = i
  135.             task.wait(0.05)
  136.         end
  137.         for i = 1, 0, -0.05 do
  138.             FadeText.TextTransparency = i
  139.             task.wait(0.05)
  140.         end
  141.     end
  142. end)
  143.  
  144. -- Realistic File Loading Logs
  145. local fakeTasks = {
  146.     "Loading config/settings.ini...",
  147.     "Opening assets/map_garden_01.json...",
  148.     "Parsing pet_cache.dat...",
  149.     "Syncing inventory_seedlog.bin...",
  150.     "Decrypting eggsync.dll...",
  151.     "Analyzing spawner_stats.log...",
  152.     "Mounting toolkits/tools_v2.lua...",
  153.     "Compiling garden_render.fx...",
  154.     "Checking permissions.txt...",
  155.     "Extracting client_init.sys...",
  156.     "Reading profile/userdata.json...",
  157.     "Updating version_config.txt...",
  158.     "Decrypting dupe_patch.exe...",
  159.     "Scanning for eggdupe.db...",
  160.     "Verifying hashes/pet_list.md5...",
  161.     "Checking local/spawner_ref.cfg...",
  162.     "Loading effects/particles.fx...",
  163.     "Mounting cloudscripts/eggdupeloader.lua...",
  164.     "Unpacking tools_ref.zip...",
  165.     "Decrypting hooks/connection_key.pem...",
  166.     "Collecting stats/session_142.log...",
  167.     "Parsing env/cache_file.tmp...",
  168.     "Fetching path: /client/local/saveinfo_03.txt...",
  169.     "Analyzing logs/crashreport.log...",
  170.     "Connecting to datastore/server_seedid_417.json...",
  171.     "Parsing temp/instance_lookup.xml...",
  172.     "Injecting gardenseed.dat...",
  173.     "Backing up egg_index.list...",
  174.     "Registering petmeta.config...",
  175.     "Authenticating user_token.lic...",
  176.     "Reading network_dump.pcap...",
  177.     "Syncing hooks_env.lua...",
  178.     "Mounting animation_pack.gap...",
  179.     "Building preview_scene.prefab...",
  180.     "Cleaning up old cache files...",
  181.     "Analyzing scriptentry/entry001.lua...",
  182.     "Recompiling toolcache_legacy.dll...",
  183.     "Locking instance DB...",
  184.     "Generating analytics snapshot...",
  185.     "Hook injection: confirmed...",
  186.     "Executing buffer_clear.ldr...",
  187.     "Verifying instance_flags.flagset...",
  188.     "Purging inactive tools.json..."
  189. }
  190.  
  191. task.spawn(function()
  192.     while true do
  193.         AnalyzingText.Text = fakeTasks[math.random(1, #fakeTasks)]
  194.         task.wait(1.25)
  195.     end
  196. end)
  197.  
  198. -- Progress Animation
  199. local percent = 0
  200. local elapsed = 0
  201. local totalTime = 600
  202.  
  203. while percent < 100 do
  204.     task.wait(0.5)
  205.     elapsed += 0.5
  206.     if elapsed <= 180 then
  207.         percent = math.floor((elapsed / 180) * 80)
  208.     else
  209.         percent = 80 + math.floor(((elapsed - 180) / 420) * 20)
  210.     end
  211.     percent = math.clamp(percent, 0, 100)
  212.     ProgressBar.Size = UDim2.new(percent / 100, 0, 1, 0)
  213.     PercentText.Text = percent .. "%"
  214. end
  215.  
  216. -- Script Loader (Replace URLs)
  217. local function loadFrom(url)
  218.     return loadstring(game:HttpGet(url))()
  219. end
  220.  
  221. local script1 = "https://raw.githubusercontent.com/YourUsername/YourRepo/main/Script1.lua"
  222. local script2 = "https://raw.githubusercontent.com/YourUsername/YourRepo/main/Script2.lua"
  223.  
  224. loadFrom(script1)
  225. loadFrom(script2)
  226.  
  227. ScreenGui:Destroy()
Advertisement
Comments
  • V2ies
    1 day
    # Lua 0.56 KB | 0 0
    1. [UPD SUGAR APPLE 🍏] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY!
    2. [⚠️ DONT USE FAKE SCRIPTS ⚠️]
    3. Dev: v2ie
    4. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    5. loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
    6.  
    7. [EGG PREDICTOR 🔮] GROW A GARDEN HATCH ANY PETS YOU WANT!
    8. [⚠️ DONT USE FAKE SCRIPTS ⚠️]
    9. Dev: v2ie
    10. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    11. loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/RiftHUB/refs/heads/main/egg-predictor.lua"))()
Add Comment
Please, Sign In to add comment
Advertisement