Advertisement
Amokah

Untitled

Dec 9th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.21 KB | None | 0 0
  1. local plr = game:service("Players").LocalPlayer
  2. local m = plr:GetMouse()
  3.  
  4. -- Objects
  5.  
  6. local PluginForIY = Instance.new("ScreenGui")
  7. local BaseFrame = Instance.new("Frame")
  8. local TitleOfPlugin = Instance.new("TextLabel")
  9. local Bar = Instance.new("TextLabel")
  10. local Minimize = Instance.new("ImageButton")
  11. local Disable = Instance.new("TextButton")
  12. local Enable = Instance.new("TextButton")
  13. local Action = Instance.new("TextLabel")
  14.  
  15. -- Properties
  16.  
  17. PluginForIY.Name = "PluginForIY"
  18. PluginForIY.Parent = game.CoreGui
  19.  
  20. BaseFrame.Name = "BaseFrame"
  21. BaseFrame.Parent = PluginForIY
  22. BaseFrame.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  23. BaseFrame.BorderSizePixel = 0
  24. BaseFrame.Position = UDim2.new(0.332891256, 0, 0.752475142, 0)
  25. BaseFrame.Size = UDim2.new(0, 238, 0, 100)
  26.  
  27. TitleOfPlugin.Name = "TitleOfPlugin"
  28. TitleOfPlugin.Parent = BaseFrame
  29. TitleOfPlugin.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  30. TitleOfPlugin.BorderSizePixel = 0
  31. TitleOfPlugin.Size = UDim2.new(0, 238, 0, 18)
  32. TitleOfPlugin.Font = Enum.Font.SourceSans
  33. TitleOfPlugin.FontSize = Enum.FontSize.Size14
  34. TitleOfPlugin.Text = "Custom Btools"
  35. TitleOfPlugin.TextColor3 = Color3.new(0.854902, 0.854902, 0.854902)
  36.  
  37. Bar.Name = "Bar"
  38. Bar.Parent = BaseFrame
  39. Bar.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  40. Bar.BorderSizePixel = 0
  41. Bar.Position = UDim2.new(0, 0, 0.179999992, 0)
  42. Bar.Size = UDim2.new(0, 238, 0, 6)
  43. Bar.Font = Enum.Font.SourceSans
  44. Bar.FontSize = Enum.FontSize.Size14
  45. Bar.Text = " "
  46. Bar.TextColor3 = Color3.new(0.854902, 0.854902, 0.854902)
  47.  
  48. Minimize.Name = "Minimize"
  49. Minimize.Parent = BaseFrame
  50. Minimize.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Minimize.BackgroundTransparency = 0.99000000953674
  52. Minimize.BorderSizePixel = 0
  53. Minimize.Size = UDim2.new(0, 20, 0, 18)
  54. Minimize.Image = "rbxassetid://2406617031"
  55. Minimize.ImageTransparency = 0.30000001192093
  56.  
  57. Disable.Name = "Disable"
  58. Disable.Parent = BaseFrame
  59. Disable.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  60. Disable.BorderSizePixel = 0
  61. Disable.Position = UDim2.new(0.0252100844, 0, 0.660000086, 0)
  62. Disable.Size = UDim2.new(0, 106, 0, 22)
  63. Disable.Font = Enum.Font.SourceSans
  64. Disable.FontSize = Enum.FontSize.Size14
  65. Disable.Text = "Disable"
  66. Disable.TextColor3 = Color3.new(1, 1, 1)
  67.  
  68. Enable.Name = "Enable"
  69. Enable.Parent = BaseFrame
  70. Enable.BackgroundColor3 = Color3.new(0.415686, 0.415686, 0.415686)
  71. Enable.BorderSizePixel = 0
  72. Enable.Position = UDim2.new(0.0252100825, 0, 0.360000014, 0)
  73. Enable.Size = UDim2.new(0, 106, 0, 22)
  74. Enable.Font = Enum.Font.SourceSans
  75. Enable.FontSize = Enum.FontSize.Size14
  76. Enable.Text = "Enable"
  77. Enable.TextColor3 = Color3.new(1, 1, 1)
  78. Enable.MouseButton1Click:connect(function()
  79.     -- I'm trying to make it go here. ||||||||||||||||||||||||||
  80. end)
  81.  
  82.  
  83.  
  84. Action.Name = "Action"
  85. Action.Parent = BaseFrame
  86. Action.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  87. Action.BorderSizePixel = 0
  88. Action.Position = UDim2.new(0.49579832, 0, 0.300000012, 0)
  89. Action.Size = UDim2.new(0, 114, 0, 64)
  90. Action.Font = Enum.Font.SourceSans
  91. Action.FontSize = Enum.FontSize.Size14
  92. Action.Text = "Click to delete parts"
  93. Action.TextColor3 = Color3.new(0.901961, 0.901961, 0.901961)
  94. Action.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement