SebTDZ

Untitled

Apr 21st, 2019
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.73 KB | None | 0 0
  1. -- Instances:
  2.         local Message = Instance.new("ScreenGui")
  3.         local Text = Instance.new("TextBox")
  4.         --Properties:
  5.         Message.Name = "Message"
  6.         Message.Parent = owner:WaitForChild("PlayerGui")
  7.         Message.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8.        
  9.         Text.Name = "Text"
  10.         Text.Text = "h"
  11.         Text.Parent = Message
  12.         Text.BackgroundColor3 = Color3.new(0.384314, 0.384314, 0.384314)
  13.         Text.BackgroundTransparency = 0.55000001192093
  14.         Text.BorderSizePixel = 0
  15.         Text.Size = UDim2.new(1, 0, 1, 0)
  16.         Text.Font = Enum.Font.SciFi
  17.         Text.TextColor3 = Color3.new(0, 0, 0)
  18.         Text.TextSize = 50
  19.  
  20. while true do
  21. print(Text.Text)
  22. wait(0.5)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment