Advertisement
foxywolf233

Funny Update Log

Dec 12th, 2021
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local UpdateLog = Instance.new("ScreenGui")
  7. local Open = Instance.new("TextButton")
  8. local UpdateLog_2 = Instance.new("Frame")
  9. local Header = Instance.new("TextLabel")
  10. local Main = Instance.new("TextLabel")
  11. local Close = Instance.new("TextButton")
  12. local Line = Instance.new("TextLabel")
  13. local UICorner = Instance.new("UICorner")
  14.  
  15. --Properties:
  16.  
  17. UpdateLog.Name = "UpdateLog"
  18. UpdateLog.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. UpdateLog.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Open.Name = "Open"
  22. Open.Parent = UpdateLog
  23. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Open.BorderColor3 = Color3.fromRGB(27, 42, 53)
  25. Open.Position = UDim2.new(-0.000566460192, 0, 0.936298847, 0)
  26. Open.Size = UDim2.new(0, 145, 0, 56)
  27. Open.AutoButtonColor = false
  28. Open.Style = Enum.ButtonStyle.RobloxRoundButton
  29. Open.Font = Enum.Font.SourceSansBold
  30. Open.Text = "Update Log"
  31. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. Open.TextSize = 32.000
  33. Open.TextStrokeTransparency = 0.000
  34.  
  35. UpdateLog_2.Name = "UpdateLog"
  36. UpdateLog_2.Parent = UpdateLog
  37. UpdateLog_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  38. UpdateLog_2.BackgroundTransparency = 0.450
  39. UpdateLog_2.Position = UDim2.new(0.5, -200, 0.5, -200)
  40. UpdateLog_2.Size = UDim2.new(0, 400, 0, 400)
  41. UpdateLog_2.Visible = false
  42.  
  43. Header.Name = "Header"
  44. Header.Parent = UpdateLog_2
  45. Header.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. Header.BackgroundTransparency = 1.000
  47. Header.Size = UDim2.new(0, 400, 0, 90)
  48. Header.Font = Enum.Font.SourceSansBold
  49. Header.Text = "Update Log"
  50. Header.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. Header.TextSize = 77.000
  52. Header.TextStrokeTransparency = 0.000
  53. Header.TextWrapped = true
  54.  
  55. Main.Name = "Main"
  56. Main.Parent = UpdateLog_2
  57. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  58. Main.BackgroundTransparency = 1.000
  59. Main.Position = UDim2.new(0, 0, 0.267500013, 0)
  60. Main.Size = UDim2.new(0, 400, 0, 35)
  61. Main.Font = Enum.Font.SourceSansBold
  62. Main.Text = "--Added Update Log"
  63. Main.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. Main.TextSize = 53.000
  65. Main.TextStrokeTransparency = 0.000
  66. Main.TextWrapped = true
  67.  
  68. Close.Name = "Close"
  69. Close.Parent = UpdateLog_2
  70. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  71. Close.BackgroundTransparency = 1.000
  72. Close.Position = UDim2.new(0, 0, 0.827499986, 0)
  73. Close.Size = UDim2.new(0, 400, 0, 69)
  74. Close.Font = Enum.Font.SourceSansBold
  75. Close.Text = "Close"
  76. Close.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. Close.TextSize = 73.000
  78. Close.TextStrokeTransparency = 0.000
  79. Close.TextWrapped = true
  80.  
  81. Line.Name = "Line"
  82. Line.Parent = UpdateLog_2
  83. Line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  84. Line.BackgroundTransparency = 1.000
  85. Line.BorderColor3 = Color3.fromRGB(255, 255, 255)
  86. Line.Position = UDim2.new(0, 0, 0.199999988, 0)
  87. Line.Size = UDim2.new(0, 400, 0, 10)
  88. Line.Font = Enum.Font.SourceSans
  89. Line.Text = "----------------------------------------------------------------------------------------------------"
  90. Line.TextColor3 = Color3.fromRGB(255, 255, 255)
  91. Line.TextSize = 100.000
  92. Line.TextWrapped = true
  93.  
  94. UICorner.Parent = UpdateLog_2
  95.  
  96. -- Scripts:
  97.  
  98. local function FLSL_fake_script() -- Open.Main
  99. local script = Instance.new('LocalScript', Open)
  100.  
  101. local box = script.Parent
  102.  
  103. --Makes it better--
  104. box.MouseEnter:Connect(function()
  105. box.TextSize = 20
  106. end)
  107. box.MouseLeave:Connect(function()
  108. box.TextSize = 15
  109. end)
  110.  
  111. --Main Function--
  112. box.MouseButton1Down:Connect(function()
  113. box.Parent.Instructions.ClickSound:Play()
  114. box.Visible = false
  115. box.Parent.UpdateLog.Visible = true
  116. end)
  117. end
  118. coroutine.wrap(FLSL_fake_script)()
  119. local function NEXHBK_fake_script() -- Close.Main
  120. local script = Instance.new('LocalScript', Close)
  121.  
  122. --Don't Touch--
  123. local box = script.Parent
  124.  
  125. box.MouseEnter:Connect(function()
  126. box.TextSize = 75
  127. end)
  128. box.MouseLeave:Connect(function()
  129. box.TextSize = 60
  130. end)
  131.  
  132. box.MouseButton1Down:Connect(function()
  133. box.Parent.Parent.Instructions.ClickSound:Play()
  134. box.Parent.Visible = false
  135. box.Parent.Parent.Open.Visible = true
  136. end)
  137. end
  138. coroutine.wrap(NEXHBK_fake_script)()
  139. local function IJZCWZR_fake_script() -- UpdateLog.Instructions
  140. local script = Instance.new('Script', UpdateLog)
  141.  
  142. --Do not change the name of any text button or frame--
  143. --Change stuff if you know what you are doing--
  144. --Enter the following text for the UpdateLog in ""--
  145. --Do not delete this script or it won't work--
  146. Header = "Update Log"
  147. Main = "--Added Update Log"
  148.  
  149.  
  150.  
  151.  
  152. --Code--
  153. script.Parent.Parent = game.StarterGui
  154. script.Parent.UpdateLog.Header.Text = Header
  155. script.Parent.UpdateLog.Main.Text = Main
  156.  
  157. end
  158. coroutine.wrap(IJZCWZR_fake_script)()
  159.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement