Advertisement
anuisud1

Untitled

Feb 19th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local TextLabel = Instance.new("TextLabel")
  5.  
  6. -- Properties
  7.  
  8. ScreenGui.Parent = game.StarterGui
  9. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  10.  
  11. TextLabel.Parent = ScreenGui
  12. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  13. TextLabel.BackgroundTransparency = 1
  14. TextLabel.BorderSizePixel = 0
  15. TextLabel.Position = UDim2.new(0, 0, 0.969253302, 0)
  16. TextLabel.Size = UDim2.new(0, 76, 0, 21)
  17. TextLabel.Font = Enum.Font.SourceSans
  18. TextLabel.Text = "Money v.0.2a"
  19. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  20. TextLabel.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement