Advertisement
meldrednyx

Final V2

Dec 15th, 2020 (edited)
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.24 KB | None | 0 0
  1. --SadBoi Studio development
  2.  
  3. -- settings
  4. -- loading screen
  5. local LoadingScreen = "yes"
  6.  
  7. if LoadingScreen == ("yes") then
  8. local LoadGui = Instance.new("ScreenGui")
  9.  
  10. -- Instances:
  11. LoadGui.ResetOnSpawn = false
  12. local LoadGui = Instance.new("ScreenGui")
  13. local LoadingFrame = Instance.new("Frame")
  14. local Background = Instance.new("ImageLabel")
  15. local Logo1 = Instance.new("ImageLabel")
  16. local Logo2 = Instance.new("ImageLabel")
  17. local Logo3 = Instance.new("ImageLabel")
  18.  
  19. --Properties:
  20. LoadGui.ResetOnSpawn = false
  21. LoadGui.Name = "LoadGui"
  22. LoadGui.Parent = game.StarterGui
  23. LoadGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. LoadingFrame.Name = "LoadingFrame"
  26. LoadingFrame.Parent = LoadGui
  27. LoadingFrame.BackgroundColor3 = Color3.fromRGB(0, 159, 238)
  28. LoadingFrame.BorderColor3 = Color3.fromRGB(170, 85, 255)
  29. LoadingFrame.Position = UDim2.new(0, 0, 0, -38)
  30. LoadingFrame.Size = UDim2.new(1, 0, 1, 38)
  31.  
  32. Background.Name = "Background"
  33. Background.Parent = LoadingFrame
  34. Background.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  35. Background.Position = UDim2.new(0, -100, 0, -100)
  36. Background.Size = UDim2.new(1, 500, 1, 500)
  37. Background.ZIndex = 9
  38.  
  39. Logo1.Name = "Logo1"
  40. Logo1.Parent = LoadingFrame
  41. Logo1.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  42. Logo1.BackgroundTransparency = 1.000
  43. Logo1.BorderSizePixel = 0
  44. Logo1.Position = UDim2.new(0.5, -400, 0.5, -200)
  45. Logo1.Size = UDim2.new(0, 400, 0, 400)
  46. Logo1.Visible = false
  47. Logo1.ZIndex = 10
  48. Logo1.Image = "http://www.roblox.com/asset/?id=6697889899"
  49.  
  50. Logo2.Name = "Logo2"
  51. Logo2.Parent = LoadingFrame
  52. Logo2.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  53. Logo2.BackgroundTransparency = 1.000
  54. Logo2.BorderSizePixel = 0
  55. Logo2.Position = UDim2.new(0.5, -400, 0.5, -75)
  56. Logo2.Size = UDim2.new(0, 400, 0, 150)
  57. Logo2.Visible = false
  58. Logo2.ZIndex = 9
  59. Logo2.Image = "rbxassetid://2773779440"
  60.  
  61. Logo3.Name = "Logo3"
  62. Logo3.Parent = LoadingFrame
  63. Logo3.BackgroundColor3 = Color3.fromRGB(255, 0, 4)
  64. Logo3.BackgroundTransparency = 1.000
  65. Logo3.BorderSizePixel = 0
  66. Logo3.Position = UDim2.new(0.5, -100, 0.5, 100)
  67. Logo3.Size = UDim2.new(0, 200, 0, 75)
  68. Logo3.ZIndex = 9
  69. Logo3.Image = "rbxassetid://2773779360"
  70. Logo3.ImageColor3 = Color3.fromRGB(180, 180, 180)
  71. Logo3.ImageTransparency = 1.000
  72.  
  73. -- Scripts:
  74.  
  75. local GUI = LoadGui:Clone()
  76. local PlayerGui = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  77.  
  78. PlayerGui:SetTopbarTransparency(0)
  79.  
  80. GUI.Parent = PlayerGui
  81. wait(2)
  82. local Plr = game.Players.LocalPlayer
  83.  
  84. GUI.LoadingFrame.Logo2.Visible = true
  85. GUI.LoadingFrame.Logo1.Visible = true
  86. wait(0.5)
  87. local Folder = Instance.new("Folder", Plr)
  88. Folder.Name = "CurrentSong"
  89. local Song = Instance.new("Sound", Folder)
  90. Song.Playing = false
  91.  
  92. Song.SoundId = "rbxassetid://6310267481"
  93. Song:Play()
  94. wait(0)
  95. GUI.LoadingFrame.Logo2:TweenPosition(UDim2.new(0.5, 0,0.5, -75),"Out","Quint",3,true)
  96. wait(20)
  97. GUI.LoadingFrame:TweenPosition(UDim2.new(0,0,1,0),"InOut","Sine",0.5)
  98. Song:Stop()
  99. wait(0.5)
  100. GUI:Destroy()
  101. LoadingFrame:Destroy()
  102. end
  103.  
  104. loadstring(game:HttpGet('https://pastebin.com/raw/MfnBhUK4'))()
  105. local notification = 0
  106. local temp = 0
  107. local timerem = 29
  108. if notification == 0 then
  109. game.StarterGui:SetCore("SendNotification",{Title="SADBOI STUDIOS",Text=" MEL GUI ",Duration=20,Button1=" 12/14/2020 "})
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement