Advertisement
Guest User

kek

a guest
Dec 8th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. if(is_userdata_reserved(game) == true) then
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local TextLabel2 = Instance.new("TextLabel")
  6. local TextLabel3 = Instance.new("TextLabel")
  7.  
  8. --Properties:
  9.  
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0.243137, 0.243137, 0.243137)
  15. Frame.BorderSizePixel = 0
  16. Frame.Position = UDim2.new(0.461419761, 0, 0.439320385, 0)
  17.  
  18. TextLabel.Parent = Frame
  19. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  20. TextLabel.BackgroundTransparency = 1
  21. TextLabel.BorderColor3 = Color3.new(0, 1, 0.498039)
  22. TextLabel.Position = UDim2.new(0, 0, 0.150000006, 0)
  23. TextLabel.Size = UDim2.new(0, 67, 0, 52)
  24. TextLabel.Visible = false
  25. TextLabel.Font = Enum.Font.Highway
  26. TextLabel.Text = "So"
  27. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  28. TextLabel.TextSize = 36
  29.  
  30. TextLabel2.Name = "TextLabel2"
  31. TextLabel2.Parent = Frame
  32. TextLabel2.BackgroundColor3 = Color3.new(1, 1, 1)
  33. TextLabel2.BackgroundTransparency = 1
  34. TextLabel2.Position = UDim2.new(0.330000013, 0, 0.129999995, 0)
  35. TextLabel2.Size = UDim2.new(0, 67, 0, 56)
  36. TextLabel2.Visible = false
  37. TextLabel2.Font = Enum.Font.Highway
  38. TextLabel2.Text = "na"
  39. TextLabel2.TextColor3 = Color3.new(0, 0, 0)
  40. TextLabel2.TextSize = 36
  41.  
  42. TextLabel3.Name = "TextLabel3"
  43. TextLabel3.Parent = Frame
  44. TextLabel3.BackgroundColor3 = Color3.new(1, 1, 1)
  45. TextLabel3.BackgroundTransparency = 1
  46. TextLabel3.Position = UDim2.new(0.189999998, 0, 0.600000024, 0)
  47. TextLabel3.Size = UDim2.new(0, 61, 0, 33)
  48. TextLabel3.Visible = false
  49. TextLabel3.Font = Enum.Font.Highway
  50. TextLabel3.Text = "Christmas"
  51. TextLabel3.TextColor3 = Color3.new(1, 1, 1)
  52. TextLabel3.TextSize = 20
  53.  
  54. -- Scripts:
  55.  
  56. local function FPUW_fake_script() -- Frame.LocalScript
  57. local script = Instance.new('LocalScript', Frame)
  58.  
  59. local object = script.Parent
  60. object.AnchorPoint = Vector2.new(0.5, 0.5)
  61. object.Position = UDim2.new(0.5, 0, 0.5, 0)
  62.  
  63.  
  64. object:TweenSize(UDim2.new(0, 100, 0, 100))
  65. wait(1.2)
  66. script.Parent.Parent.Frame.TextLabel.Visible = true
  67. script.Parent.Parent.Frame.TextLabel2.Visible = true
  68. script.Parent.Parent.Frame.TextLabel3.Visible = true
  69. wait(3)
  70. script.Parent.Parent.Frame.Visible = false
  71. end
  72. coroutine.wrap(FPUW_fake_script)()
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement