Advertisement
Guest User

Sound_Id Application HD

a guest
Jul 24th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --Sound_Id
  2.  
  3. wait(5)
  4.  
  5. --The Script is Inside StarterGui
  6. Gui = Instance.new('ScreenGui')
  7. Frame = Instance.new('Frame')
  8. Label = Instance.new('TextLabel')
  9.  
  10. Gui.Parent = script.Parent
  11. Gui.Name = "MyApplicationGui"
  12. Frame.Parent = script.Parent.MyApplicationGui
  13. Frame.Name = "ApplicationFrame"
  14. Label.Parent = script.Parent.MyApplicationGui.ApplicationFrame
  15. Label.Name = "MyLabel"
  16.  
  17. Frame.Size = UDim2.new(1,0,1,0)
  18. Frame.Transparency = 1
  19. Frame.Position = UDim2.new(-4,0,0,0)
  20.  
  21. Label.Size = UDim2.new(1,0,1,0)
  22. Label.Transparency = 0.5
  23. Label.Text = "Thanks for Reading my Application"
  24. Label.FontSize = Enum.FontSize.Size48
  25.  
  26.  
  27. Frame:TweenPosition(UDim2.new(0, 0, 0, 0), "Out", "Linear", 5)
  28. wait(6)
  29. Frame:TweenPosition(UDim2.new(-4, 0, 0, 0), "In", "Linear", 5)
  30.  
  31. Gui:remove()
  32. print ("Goodbye")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement