Advertisement
kleberFBI

Extreme LT2 (Pre-View)

Mar 14th, 2022
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local VideoFrame = Instance.new("VideoFrame")
  3. local UIGradient = Instance.new("UIGradient")
  4. local Close = Instance.new("TextButton")
  5. local MainLabel = Instance.new("TextLabel")
  6. local UICorner = Instance.new("UICorner")
  7.  
  8. ScreenGui.Parent = game:GetService("CoreGui")
  9.  
  10. VideoFrame.Active = true
  11. VideoFrame.Draggable = true
  12. VideoFrame.Parent = ScreenGui
  13. VideoFrame.Size = UDim2.new(0, 510, 0, 271)
  14. VideoFrame.Looped = true
  15. VideoFrame.Video = "rbxassetid://5608402438"
  16. VideoFrame.Position = UDim2.new(0.26733577251434326, 0, 0.23061631619930267, 0)
  17. VideoFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  18. VideoFrame.Playing = true
  19.  
  20. UIGradient.Parent = VideoFrame
  21. UIGradient.Color = ColorSequence.new({
  22. ColorSequenceKeypoint.new(0, Color3.new(0, 1, 0.113725)),
  23. ColorSequenceKeypoint.new(1, Color3.new(0, 0.784314, 1))
  24. })
  25.  
  26. Close.Parent = VideoFrame
  27. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  28. Close.Size = UDim2.new(0, 54, 0, 49)
  29. Close.TextSize = 58
  30. Close.TextColor3 = Color3.new(1, 0, 0)
  31. Close.Text = "x"
  32. Close.Font = Enum.Font.Gotham
  33. Close.BackgroundTransparency = 1
  34. Close.Position = UDim2.new(0.8781038522720337, 0, 0, 0)
  35. Close.Name = "Close"
  36.  
  37. MainLabel.Parent = VideoFrame
  38. MainLabel.TextWrapped = true
  39. MainLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  40. MainLabel.TextXAlignment = Enum.TextXAlignment.Right
  41. MainLabel.Size = UDim2.new(0, 352, 0, 56)
  42. MainLabel.TextSize = 36
  43. MainLabel.Text = "Extreme Lumber Tycoon 2"
  44. MainLabel.TextColor3 = Color3.new(0, 0.18039216101169586, 1)
  45. MainLabel.Font = Enum.Font.PermanentMarker
  46. MainLabel.BackgroundTransparency = 1
  47. MainLabel.Name = "MainLabel"
  48.  
  49. UICorner.Parent = VideoFrame
  50. UICorner.CornerRadius = UDim.new(0, 25)
  51.  
  52.  
  53. Close.MouseButton1Down:connect(function()
  54. ScreenGui:Destroy()
  55. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement