StenHisDirt

Dragger

Nov 1st, 2021 (edited)
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. local Dragger = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local one = Instance.new("Frame")
  4. local two = Instance.new("Frame")
  5. local three = Instance.new("Frame")
  6. local four = Instance.new("Frame")
  7.  
  8. Dragger.Name = "Dragger"
  9. Dragger.Parent = game.CoreGui
  10. Dragger.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. Dragger.Enabled = true
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = Dragger
  15. Main.BackgroundColor3 = Color3.fromRGB(6, 126, 255)
  16. Main.BackgroundTransparency = 0.900
  17. Main.BorderSizePixel = 0
  18. Main.Position = UDim2.new(0.657525539, 0, 0.31533742, 0)
  19. Main.Size = UDim2.new(0, 50, 0, 50)
  20.  
  21. one.Name = "one"
  22. one.Parent = Main
  23. one.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. one.BorderSizePixel = 0
  25. one.Size = UDim2.new(1, 1, 0, 1)
  26.  
  27. two.Name = "two"
  28. two.Parent = Main
  29. two.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. two.BorderSizePixel = 0
  31. two.Position = UDim2.new(1, 0, 0, 0)
  32. two.Size = UDim2.new(0, 1, 1, 1)
  33.  
  34. three.Name = "three"
  35. three.Parent = Main
  36. three.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  37. three.BorderSizePixel = 0
  38. three.Position = UDim2.new(0, 0, 1, 0)
  39. three.Size = UDim2.new(1, 1, 0, 1)
  40.  
  41. four.Name = "four"
  42. four.Parent = Main
  43. four.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  44. four.BorderSizePixel = 0
  45. four.Size = UDim2.new(0, 1, 1, 1)
  46.  
  47. return Dragger
Add Comment
Please, Sign In to add comment