Advertisement
IWannaDieAsWell

rclick

Mar 4th, 2023 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | Source Code | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local ImageButton = Instance.new("ImageButton")
  9. local UICorner = Instance.new("UICorner")
  10. local UICorner_2 = Instance.new("UICorner")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. Frame.BackgroundTransparency = 1.000
  19. Frame.Position = UDim2.new(0.953999996, 0, -0.00200000009, 0)
  20. Frame.Size = UDim2.new(0, 32, 0, 32)
  21.  
  22. ImageButton.Parent = Frame
  23. ImageButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. ImageButton.BackgroundTransparency = 0.500
  25. ImageButton.Position = UDim2.new(-0.283214092, 0, 0.143820286, 0)
  26. ImageButton.Size = UDim2.new(0, 32, 0, 32)
  27. ImageButton.Image = "rbxassetid://6862453905"
  28.  
  29. UICorner.CornerRadius = UDim.new(0, 13)
  30. UICorner.Parent = ImageButton
  31.  
  32. UICorner_2.CornerRadius = UDim.new(0, 13)
  33. UICorner_2.Parent = Frame
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement