Meliodas0_0

Drawing API Crosshair

Feb 4th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. circle = Drawing.new("Circle")
  2. circle.Position = Vector2.new(workspace.CurrentCamera.ViewportSize.X / 2, workspace.CurrentCamera.ViewportSize.Y / 2)
  3. circle.Color = Color3.fromRGB(232, 173, 56)
  4. circle.Thickness = 0.1
  5. circle.NumSides = 12
  6. circle.Radius = 5
  7. circle.Visible = true
  8. circle.Filled = true
Add Comment
Please, Sign In to add comment