Advertisement
6Hubbed

Infinite Yield FREE SCRIPT PASTEBIN

Aug 21st, 2021
32,169
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 1 0
  1. -- INFINITE YIELD
  2. local AnnGUI = Instance.new("Frame")
  3. local background = Instance.new("Frame")
  4. local TextBox = Instance.new("TextLabel")
  5. local shadow = Instance.new("Frame")
  6. local PopupText = Instance.new("TextLabel")
  7. local Exit = Instance.new("ImageButton")
  8.  
  9. screenGui = Instance.new("ScreenGui",game.CoreGui)
  10.  
  11. AnnGUI.Name = 'Boomer'
  12. AnnGUI.Parent = screenGui
  13. AnnGUI.Active = true
  14. AnnGUI.BackgroundTransparency = 1
  15. AnnGUI.Position = UDim2.new(0.5, -180, 0, -400)
  16. AnnGUI.Size = UDim2.new(0, 360, 0, 20)
  17. AnnGUI.ZIndex = 4
  18.  
  19. background.Name = "background"
  20. background.Parent = AnnGUI
  21. background.BackgroundColor3 = Color3.fromRGB(36, 36, 37)
  22. background.BorderSizePixel = 0
  23. background.Position = UDim2.new(0, 0, 0, 20)
  24. background.Size = UDim2.new(0, 360, 0, 135)
  25.  
  26. TextBox.Parent = background
  27. TextBox.BackgroundTransparency = 1
  28. TextBox.Position = UDim2.new(0.017, 0, 0.06, 0)
  29. TextBox.Size = UDim2.new(0, 348, 0, 120)
  30. TextBox.Font = Enum.Font.SourceSans
  31. TextBox.TextSize = 18
  32. TextBox.TextWrapped = true
  33. TextBox.Text = 'Please use the new Infinite Yield loadstring. You can find it in the Discord.\n\ndiscord.io/infiniteyield\n\nYou will now be re-directed to the new loadstring.'
  34. TextBox.TextColor3 = Color3.new(1, 1, 1)
  35. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  36. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  37.  
  38. shadow.Name = "shadow"
  39. shadow.Parent = AnnGUI
  40. shadow.BackgroundColor3 = Color3.fromRGB(46, 46, 47)
  41. shadow.BorderSizePixel = 0
  42. shadow.Size = UDim2.new(0, 360, 0, 20)
  43. shadow.ZIndex = 4
  44.  
  45. PopupText.Name = "PopupText"
  46. PopupText.Parent = shadow
  47. PopupText.BackgroundTransparency = 1
  48. PopupText.Position = UDim2.new(0, 51, 0, 0)
  49. PopupText.Size = UDim2.new(0.76, -16, 0.95, 0)
  50. PopupText.ZIndex = 4
  51. PopupText.Font = Enum.Font.SourceSans
  52. PopupText.TextSize = 14
  53. PopupText.Text = "Server Announcement"
  54. PopupText.TextColor3 = Color3.new(1, 1, 1)
  55. PopupText.TextWrapped = true
  56.  
  57. Exit.Name = "Exit"
  58. Exit.Parent = shadow
  59. Exit.BackgroundTransparency = 1
  60. Exit.Size = UDim2.new(0, 20, 0, 20)
  61. Exit.ZIndex = 4
  62. Exit.Image = "rbxassetid://2132544126"
  63.  
  64. wait(1)
  65. AnnGUI:TweenPosition(UDim2.new(0.5, -180, 0, 150), "InOut", "Quart", 0.5, true, nil)
  66.  
  67. Exit.MouseButton1Click:Connect(function()
  68. AnnGUI:TweenPosition(UDim2.new(0.5, -180, 0, -400), "InOut", "Quart", 0.5, true, nil)
  69. wait(0.6)
  70. AnnGUI:Destroy()
  71. end)
  72.  
  73. wait(5)
  74. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement