Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local Tutorial = Instance.new("ScreenGui")
- local PrintGUI = Instance.new("Frame")
- local drag = Instance.new("Frame")
- local drag2 = Instance.new("Frame")
- local printbtn = Instance.new("TextButton")
- local design = Instance.new("Frame")
- local printtxt = Instance.new("TextBox")
- local title = Instance.new("TextLabel")
- local checkfe = Instance.new("TextButton")
- local exit = Instance.new("TextButton")
- -- Properties
- Tutorial.Name = "Tutorial"
- Tutorial.Parent = game.CoreGui
- PrintGUI.Name = "PrintGUI"
- PrintGUI.Parent = Tutorial
- PrintGUI.BackgroundColor3 = Color3.new(0.368627, 0.368627, 0.368627)
- PrintGUI.BorderSizePixel = 0
- PrintGUI.Position = UDim2.new(0.358543426, 0, 0.217970043, 0)
- PrintGUI.Size = UDim2.new(0, 385, 0, 322)
- PrintGUI.Active = true
- PrintGUI.Draggable = true
- drag.Name = "drag"
- drag.Parent = PrintGUI
- drag.BackgroundColor3 = Color3.new(0.898039, 0.6, 0)
- drag.BorderSizePixel = 0
- drag.Size = UDim2.new(0, 385, 0, 18)
- drag2.Name = "drag2"
- drag2.Parent = PrintGUI
- drag2.BackgroundColor3 = Color3.new(1, 0.666667, 0)
- drag2.BorderSizePixel = 0
- drag2.Position = UDim2.new(0, 0, 0.0559006222, 0)
- drag2.Size = UDim2.new(0, 385, 0, 48)
- printbtn.Name = "printbtn"
- printbtn.Parent = PrintGUI
- printbtn.BackgroundColor3 = Color3.new(1, 1, 1)
- printbtn.BorderSizePixel = 0
- printbtn.Position = UDim2.new(0.236363634, 0, 0.524844706, 0)
- printbtn.Size = UDim2.new(0, 200, 0, 50)
- printbtn.Font = Enum.Font.SciFi
- printbtn.Text = "Print"
- printbtn.TextColor3 = Color3.new(0, 0, 0)
- printbtn.TextScaled = true
- printbtn.TextSize = 14
- printbtn.TextWrapped = true
- printbtn.MouseButton1Click:connect(function()
- print(printtxt.Text)
- end)
- design.Name = "design"
- design.Parent = printbtn
- design.BackgroundColor3 = Color3.new(1, 1, 1)
- design.BorderSizePixel = 0
- design.Size = UDim2.new(0, 6, 0, 50)
- design.Style = Enum.FrameStyle.ChatBlue
- printtxt.Name = "printtxt"
- printtxt.Parent = PrintGUI
- printtxt.BackgroundColor3 = Color3.new(1, 1, 1)
- printtxt.BorderSizePixel = 0
- printtxt.Position = UDim2.new(0.132467538, 0, 0.316770196, 0)
- printtxt.Size = UDim2.new(0, 280, 0, 50)
- printtxt.Font = Enum.Font.Cartoon
- printtxt.MultiLine = true
- printtxt.Text = "HI"
- printtxt.TextColor3 = Color3.new(0, 0, 0)
- printtxt.TextSize = 20
- printtxt.TextWrapped = true
- title.Name = "title"
- title.Parent = PrintGUI
- title.BackgroundColor3 = Color3.new(1, 1, 1)
- title.BackgroundTransparency = 1
- title.BorderSizePixel = 0
- title.Position = UDim2.new(0.0337662324, 0, 0.0900621042, 0)
- title.Size = UDim2.new(0, 124, 0, 25)
- title.Font = Enum.Font.Fantasy
- title.Text = "Print GUI"
- title.TextColor3 = Color3.new(1, 1, 1)
- title.TextScaled = true
- title.TextSize = 14
- title.TextStrokeColor3 = Color3.new(0.333333, 1, 1)
- title.TextStrokeTransparency = 0
- title.TextTransparency = 1
- title.TextWrapped = true
- checkfe.Name = "checkfe"
- checkfe.Parent = PrintGUI
- checkfe.BackgroundColor3 = Color3.new(1, 1, 1)
- checkfe.BorderSizePixel = 0
- checkfe.Position = UDim2.new(0.236363634, 0, 0.726708055, 0)
- checkfe.Size = UDim2.new(0, 200, 0, 50)
- checkfe.Style = Enum.ButtonStyle.RobloxRoundButton
- checkfe.Font = Enum.Font.Fantasy
- checkfe.Text = "Check If FE"
- checkfe.TextColor3 = Color3.new(0, 0, 0)
- checkfe.TextSize = 20
- checkfe.TextWrapped = true
- checkfe.MouseButton1Click:connect(function()
- print(game.Workspace.FilteringEnabled)
- end)
- exit.Name = "exit"
- exit.Parent = PrintGUI
- exit.BackgroundColor3 = Color3.new(1, 1, 1)
- exit.BackgroundTransparency = 1
- exit.Position = UDim2.new(0.927272737, 0, 0, 0)
- exit.Size = UDim2.new(0, 28, 0, 18)
- exit.Font = Enum.Font.Cartoon
- exit.Text = "X"
- exit.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
- exit.TextScaled = true
- exit.TextSize = 14
- exit.TextStrokeColor3 = Color3.new(1, 1, 1)
- exit.TextStrokeTransparency = 2
- exit.TextWrapped = true
- exit.MouseButton1Click:connect(function()
- Tutorial:Destroy()
- end)
Add Comment
Please, Sign In to add comment