Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local UpdateLog = Instance.new("ScreenGui")
- local Open = Instance.new("TextButton")
- local UpdateLog_2 = Instance.new("Frame")
- local Header = Instance.new("TextLabel")
- local Main = Instance.new("TextLabel")
- local Close = Instance.new("TextButton")
- local Line = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- --Properties:
- UpdateLog.Name = "UpdateLog"
- UpdateLog.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- UpdateLog.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Open.Name = "Open"
- Open.Parent = UpdateLog
- Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Open.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Open.Position = UDim2.new(-0.000566460192, 0, 0.936298847, 0)
- Open.Size = UDim2.new(0, 145, 0, 56)
- Open.AutoButtonColor = false
- Open.Style = Enum.ButtonStyle.RobloxRoundButton
- Open.Font = Enum.Font.SourceSansBold
- Open.Text = "Update Log"
- Open.TextColor3 = Color3.fromRGB(255, 255, 255)
- Open.TextSize = 32.000
- Open.TextStrokeTransparency = 0.000
- UpdateLog_2.Name = "UpdateLog"
- UpdateLog_2.Parent = UpdateLog
- UpdateLog_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- UpdateLog_2.BackgroundTransparency = 0.450
- UpdateLog_2.Position = UDim2.new(0.5, -200, 0.5, -200)
- UpdateLog_2.Size = UDim2.new(0, 400, 0, 400)
- UpdateLog_2.Visible = false
- Header.Name = "Header"
- Header.Parent = UpdateLog_2
- Header.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Header.BackgroundTransparency = 1.000
- Header.Size = UDim2.new(0, 400, 0, 90)
- Header.Font = Enum.Font.SourceSansBold
- Header.Text = "Update Log"
- Header.TextColor3 = Color3.fromRGB(255, 255, 255)
- Header.TextSize = 77.000
- Header.TextStrokeTransparency = 0.000
- Header.TextWrapped = true
- Main.Name = "Main"
- Main.Parent = UpdateLog_2
- Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Main.BackgroundTransparency = 1.000
- Main.Position = UDim2.new(0, 0, 0.267500013, 0)
- Main.Size = UDim2.new(0, 400, 0, 35)
- Main.Font = Enum.Font.SourceSansBold
- Main.Text = "--Added Update Log"
- Main.TextColor3 = Color3.fromRGB(255, 255, 255)
- Main.TextSize = 53.000
- Main.TextStrokeTransparency = 0.000
- Main.TextWrapped = true
- Close.Name = "Close"
- Close.Parent = UpdateLog_2
- Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Close.BackgroundTransparency = 1.000
- Close.Position = UDim2.new(0, 0, 0.827499986, 0)
- Close.Size = UDim2.new(0, 400, 0, 69)
- Close.Font = Enum.Font.SourceSansBold
- Close.Text = "Close"
- Close.TextColor3 = Color3.fromRGB(255, 255, 255)
- Close.TextSize = 73.000
- Close.TextStrokeTransparency = 0.000
- Close.TextWrapped = true
- Line.Name = "Line"
- Line.Parent = UpdateLog_2
- Line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Line.BackgroundTransparency = 1.000
- Line.BorderColor3 = Color3.fromRGB(255, 255, 255)
- Line.Position = UDim2.new(0, 0, 0.199999988, 0)
- Line.Size = UDim2.new(0, 400, 0, 10)
- Line.Font = Enum.Font.SourceSans
- Line.Text = "----------------------------------------------------------------------------------------------------"
- Line.TextColor3 = Color3.fromRGB(255, 255, 255)
- Line.TextSize = 100.000
- Line.TextWrapped = true
- UICorner.Parent = UpdateLog_2
- -- Scripts:
- local function FLSL_fake_script() -- Open.Main
- local script = Instance.new('LocalScript', Open)
- local box = script.Parent
- --Makes it better--
- box.MouseEnter:Connect(function()
- box.TextSize = 20
- end)
- box.MouseLeave:Connect(function()
- box.TextSize = 15
- end)
- --Main Function--
- box.MouseButton1Down:Connect(function()
- box.Parent.Instructions.ClickSound:Play()
- box.Visible = false
- box.Parent.UpdateLog.Visible = true
- end)
- end
- coroutine.wrap(FLSL_fake_script)()
- local function NEXHBK_fake_script() -- Close.Main
- local script = Instance.new('LocalScript', Close)
- --Don't Touch--
- local box = script.Parent
- box.MouseEnter:Connect(function()
- box.TextSize = 75
- end)
- box.MouseLeave:Connect(function()
- box.TextSize = 60
- end)
- box.MouseButton1Down:Connect(function()
- box.Parent.Parent.Instructions.ClickSound:Play()
- box.Parent.Visible = false
- box.Parent.Parent.Open.Visible = true
- end)
- end
- coroutine.wrap(NEXHBK_fake_script)()
- local function IJZCWZR_fake_script() -- UpdateLog.Instructions
- local script = Instance.new('Script', UpdateLog)
- --Do not change the name of any text button or frame--
- --Change stuff if you know what you are doing--
- --Enter the following text for the UpdateLog in ""--
- --Do not delete this script or it won't work--
- Header = "Update Log"
- Main = "--Added Update Log"
- --Code--
- script.Parent.Parent = game.StarterGui
- script.Parent.UpdateLog.Header.Text = Header
- script.Parent.UpdateLog.Main.Text = Main
- end
- coroutine.wrap(IJZCWZR_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement