Advertisement
Upscalefanatic3

Khols admin house gui

Sep 14th, 2017
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.79 KB | None | 0 0
  1. -- Made by Pro Bro
  2. -- Objects
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Open = Instance.new("TextButton")
  6. local Frame = Instance.new("Frame")
  7. local RemoveJumps = Instance.new("TextButton")
  8. local RemoveBarriers = Instance.new("TextButton")
  9. local RemoveHouse = Instance.new("TextButton")
  10. local RemoveBasePlate = Instance.new("TextButton")
  11. local RemoveAdminPads = Instance.new("TextButton")
  12. local RemoveAdminRegen = Instance.new("TextButton")
  13. local Close = Instance.new("TextButton")
  14. local p = game.Workspace.YOURNAMEHERE
  15.  
  16. -- Properties
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19.  
  20. Open.Name = "Open"
  21. Open.Parent = ScreenGui
  22. Open.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  23. Open.Size = UDim2.new(0, 200, 0, 50)
  24. Open.Font = Enum.Font.ArialBold
  25. Open.FontSize = Enum.FontSize.Size14
  26. Open.TextColor3 = Color3.new(0, 0, 0)
  27. Open.TextSize = 14
  28. Open.TextWrapped = true
  29.  
  30. Frame.Parent = ScreenGui
  31. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  32. Frame.Draggable = true
  33. Frame.Position = UDim2.new(0, 30, 0, 30)
  34. Frame.Selectable = true
  35. Frame.Size = UDim2.new(0, 300, 0, 350)
  36. Frame.Visible = false
  37.  
  38. RemoveJumps.Name = "Remove Jumps"
  39. RemoveJumps.Parent = Frame
  40. RemoveJumps.BackgroundColor3 = Color3.new(1, 1, 1)
  41. RemoveJumps.Size = UDim2.new(0, 300, 0, 50)
  42. RemoveJumps.SizeConstraint = Enum.SizeConstraint.RelativeYY
  43. RemoveJumps.Font = Enum.Font.SourceSans
  44. RemoveJumps.FontSize = Enum.FontSize.Size14
  45. RemoveJumps.Text = "Remove Jumps"
  46. RemoveJumps.TextSize = 14
  47.  
  48. RemoveBarriers.Name = "Remove Barriers"
  49. RemoveBarriers.Parent = Frame
  50. RemoveBarriers.BackgroundColor3 = Color3.new(1, 1, 1)
  51. RemoveBarriers.Position = UDim2.new(0, 0, 0, 50)
  52. RemoveBarriers.Size = UDim2.new(0, 300, 0, 50)
  53. RemoveBarriers.Font = Enum.Font.SourceSans
  54. RemoveBarriers.FontSize = Enum.FontSize.Size14
  55. RemoveBarriers.Text = "Remove Barriers"
  56. RemoveBarriers.TextSize = 14
  57.  
  58. RemoveHouse.Name = "Remove House"
  59. RemoveHouse.Parent = Frame
  60. RemoveHouse.BackgroundColor3 = Color3.new(1, 1, 1)
  61. RemoveHouse.Position = UDim2.new(0, 0, 0, 100)
  62. RemoveHouse.Size = UDim2.new(0, 300, 0, 50)
  63. RemoveHouse.Font = Enum.Font.SourceSans
  64. RemoveHouse.FontSize = Enum.FontSize.Size14
  65. RemoveHouse.Text = "Remove House"
  66. RemoveHouse.TextSize = 14
  67.  
  68. RemoveBasePlate.Name = "Remove BasePlate"
  69. RemoveBasePlate.Parent = Frame
  70. RemoveBasePlate.BackgroundColor3 = Color3.new(1, 1, 1)
  71. RemoveBasePlate.Position = UDim2.new(0, 0, 0, 150)
  72. RemoveBasePlate.Size = UDim2.new(0, 300, 0, 50)
  73. RemoveBasePlate.Font = Enum.Font.SourceSans
  74. RemoveBasePlate.FontSize = Enum.FontSize.Size14
  75. RemoveBasePlate.Text = "Remove Baseplate"
  76. RemoveBasePlate.TextSize = 14
  77.  
  78. RemoveAdminPads.Name = "Remove Admin Pads"
  79. RemoveAdminPads.Parent = Frame
  80. RemoveAdminPads.BackgroundColor3 = Color3.new(1, 1, 1)
  81. RemoveAdminPads.Position = UDim2.new(0, 0, 0, 200)
  82. RemoveAdminPads.Size = UDim2.new(0, 300, 0, 50)
  83. RemoveAdminPads.Font = Enum.Font.SourceSans
  84. RemoveAdminPads.FontSize = Enum.FontSize.Size14
  85. RemoveAdminPads.Text = "Remove Admin Pads"
  86. RemoveAdminPads.TextSize = 14
  87.  
  88. RemoveAdminRegen.Name = "Remove Admin Regen"
  89. RemoveAdminRegen.Parent = Frame
  90. RemoveAdminRegen.BackgroundColor3 = Color3.new(1, 1, 1)
  91. RemoveAdminRegen.Position = UDim2.new(0, 0, 0, 250)
  92. RemoveAdminRegen.Size = UDim2.new(0, 300, 0, 50)
  93. RemoveAdminRegen.Font = Enum.Font.SourceSans
  94. RemoveAdminRegen.FontSize = Enum.FontSize.Size14
  95. RemoveAdminRegen.Text = "Remove Admin Regen"
  96. RemoveAdminRegen.TextSize = 14
  97.  
  98. Close.Name = "Close"
  99. Close.Parent = Frame
  100. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  101. Close.Position = UDim2.new(0, 0, 0, 300)
  102. Close.Size = UDim2.new(0, 300, 0, 50)
  103. Close.SizeConstraint = Enum.SizeConstraint.RelativeYY
  104. Close.Font = Enum.Font.SourceSans
  105. Close.FontSize = Enum.FontSize.Size14
  106. Close.Text = "Close"
  107. Close.TextSize = 14
  108.  
  109.  
  110. Open.MouseButton1Down:connect(function()
  111. game.CoreGui.ScreenGui.Open.Visible = false
  112. game.CoreGui.ScreenGui.Frame.Visible = true
  113. end)
  114.  
  115. RemoveJumps.MouseButton1Down:connect(function()
  116. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admin_House.Jumps)
  117. end)
  118.  
  119. RemoveHouse.MouseButton1Down:connect(function()
  120. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admin_House.House)
  121. end)
  122.  
  123. RemoveBasePlate.MouseButton1Down:connect(function()
  124. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admin_House.Baseplate)
  125. end)
  126.  
  127. RemoveBarriers.MouseButton1Down:connect(function()
  128. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admin_House.Barriers)
  129. end)
  130.  
  131. RemoveAdminPads.MouseButton1Down:connect(function()
  132. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admins.Admin_Givers)
  133. end)
  134.  
  135. RemoveAdminRegen.MouseButton1Down:connect(function()
  136. p.Delete.delete:FireServer(game.Workspace.Terrain.Tabby.Admins.Regen_Button)
  137. end)
  138.  
  139. Close.MouseButton1Down:connect(function()
  140. game.CoreGui.ScreenGui.Frame.Visible = false
  141. game.CoreGui.ScreenGui.Open.Visible = true
  142. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement