Advertisement
Guest User

Kick Ban Gui Script v3

a guest
Mar 10th, 2022
11,668
0
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.77 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local RudraAdminGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Kick = Instance.new("Folder")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel = Instance.new("TextLabel")
  11. local PlayerName = Instance.new("TextBox")
  12. local Reason = Instance.new("TextBox")
  13. local Ban = Instance.new("Folder")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15. local PlayerName_2 = Instance.new("TextBox")
  16. local TextButton_2 = Instance.new("TextButton")
  17. local Reason_2 = Instance.new("TextBox")
  18. local Title = Instance.new("TextLabel")
  19.  
  20. --Properties:
  21.  
  22. RudraAdminGui.Name = "RudraAdminGui"
  23. RudraAdminGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  24. RudraAdminGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25. RudraAdminGui.ResetOnSpawn = false
  26.  
  27. Frame.Parent = RudraAdminGui
  28. Frame.BackgroundColor3 = Color3.fromRGB(170, 255, 255)
  29. Frame.Position = UDim2.new(0.19628647, 0, 0.252485096, 0)
  30. Frame.Size = UDim2.new(0, 550, 0, 309)
  31.  
  32. Kick.Name = "Kick"
  33. Kick.Parent = Frame
  34.  
  35. TextButton.Parent = Kick
  36. TextButton.BackgroundColor3 = Color3.fromRGB(85, 170, 0)
  37. TextButton.BackgroundTransparency = 0.250
  38. TextButton.Position = UDim2.new(0.890804589, 0, 0.158576056, 0)
  39. TextButton.Size = UDim2.new(0, 50, 0, 50)
  40. TextButton.Font = Enum.Font.LuckiestGuy
  41. TextButton.LineHeight = 0.750
  42. TextButton.Text = "Kick"
  43. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. TextButton.TextScaled = true
  45. TextButton.TextSize = 14.000
  46. TextButton.TextWrapped = true
  47.  
  48. TextLabel.Parent = Kick
  49. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. TextLabel.BackgroundTransparency = 1.000
  51. TextLabel.Position = UDim2.new(0.0249042138, 0, 0.15910238, 0)
  52. TextLabel.Size = UDim2.new(0, 210, 0, 50)
  53. TextLabel.Font = Enum.Font.SciFi
  54. TextLabel.Text = "Kick A Player"
  55. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. TextLabel.TextScaled = true
  57. TextLabel.TextSize = 14.000
  58. TextLabel.TextWrapped = true
  59.  
  60. PlayerName.Name = "PlayerName"
  61. PlayerName.Parent = Kick
  62. PlayerName.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  63. PlayerName.BackgroundTransparency = 1.000
  64. PlayerName.Position = UDim2.new(0.427203059, 0, 0.161812291, 0)
  65. PlayerName.Size = UDim2.new(0, 249, 0, 49)
  66. PlayerName.ClearTextOnFocus = false
  67. PlayerName.Font = Enum.Font.SciFi
  68. PlayerName.PlaceholderColor3 = Color3.fromRGB(76, 76, 76)
  69. PlayerName.PlaceholderText = "Enter player name here"
  70. PlayerName.Text = ""
  71. PlayerName.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. PlayerName.TextScaled = true
  73. PlayerName.TextSize = 14.000
  74. PlayerName.TextWrapped = true
  75.  
  76. Reason.Name = "Reason"
  77. Reason.Parent = Kick
  78. Reason.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  79. Reason.BackgroundTransparency = 1.000
  80. Reason.Position = UDim2.new(0.0249042306, 0, 0.320388347, 0)
  81. Reason.Size = UDim2.new(0, 525, 0, 50)
  82. Reason.ClearTextOnFocus = false
  83. Reason.Font = Enum.Font.SciFi
  84. Reason.PlaceholderColor3 = Color3.fromRGB(76, 76, 76)
  85. Reason.PlaceholderText = "Enter reason here"
  86. Reason.Text = ""
  87. Reason.TextColor3 = Color3.fromRGB(0, 0, 0)
  88. Reason.TextScaled = true
  89. Reason.TextSize = 14.000
  90. Reason.TextWrapped = true
  91. Reason.TextXAlignment = Enum.TextXAlignment.Left
  92.  
  93. Ban.Name = "Ban"
  94. Ban.Parent = Frame
  95.  
  96. TextLabel_2.Parent = Ban
  97. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  98. TextLabel_2.BackgroundTransparency = 1.000
  99. TextLabel_2.Position = UDim2.new(0.0236363634, 0, 0.537216842, 0)
  100. TextLabel_2.Size = UDim2.new(0, 226, 0, 41)
  101. TextLabel_2.Font = Enum.Font.SciFi
  102. TextLabel_2.Text = "Ban A Player"
  103. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  104. TextLabel_2.TextScaled = true
  105. TextLabel_2.TextSize = 14.000
  106. TextLabel_2.TextWrapped = true
  107. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  108.  
  109. PlayerName_2.Name = "PlayerName"
  110. PlayerName_2.Parent = Ban
  111. PlayerName_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  112. PlayerName_2.BackgroundTransparency = 1.000
  113. PlayerName_2.Position = UDim2.new(0.427203029, 0, 0.546925545, 0)
  114. PlayerName_2.Size = UDim2.new(0, 249, 0, 44)
  115. PlayerName_2.ClearTextOnFocus = false
  116. PlayerName_2.Font = Enum.Font.SciFi
  117. PlayerName_2.PlaceholderColor3 = Color3.fromRGB(76, 76, 76)
  118. PlayerName_2.PlaceholderText = "Enter player name here"
  119. PlayerName_2.Text = ""
  120. PlayerName_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  121. PlayerName_2.TextScaled = true
  122. PlayerName_2.TextSize = 14.000
  123. PlayerName_2.TextWrapped = true
  124.  
  125. TextButton_2.Parent = Ban
  126. TextButton_2.BackgroundColor3 = Color3.fromRGB(85, 170, 0)
  127. TextButton_2.BackgroundTransparency = 0.250
  128. TextButton_2.Position = UDim2.new(0.890804529, 0, 0.546925545, 0)
  129. TextButton_2.Size = UDim2.new(0, 50, 0, 50)
  130. TextButton_2.Font = Enum.Font.LuckiestGuy
  131. TextButton_2.LineHeight = 0.750
  132. TextButton_2.Text = "Ban"
  133. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  134. TextButton_2.TextScaled = true
  135. TextButton_2.TextSize = 14.000
  136. TextButton_2.TextWrapped = true
  137.  
  138. Reason_2.Name = "Reason"
  139. Reason_2.Parent = Ban
  140. Reason_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  141. Reason_2.BackgroundTransparency = 1.000
  142. Reason_2.Position = UDim2.new(0.0249042306, 0, 0.679611623, 0)
  143. Reason_2.Size = UDim2.new(0, 525, 0, 55)
  144. Reason_2.ClearTextOnFocus = false
  145. Reason_2.Font = Enum.Font.SciFi
  146. Reason_2.PlaceholderColor3 = Color3.fromRGB(76, 76, 76)
  147. Reason_2.PlaceholderText = "Enter reason here"
  148. Reason_2.Text = ""
  149. Reason_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  150. Reason_2.TextScaled = true
  151. Reason_2.TextSize = 14.000
  152. Reason_2.TextWrapped = true
  153. Reason_2.TextXAlignment = Enum.TextXAlignment.Left
  154.  
  155. Title.Name = "Title"
  156. Title.Parent = Frame
  157. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  158. Title.BackgroundTransparency = 1.000
  159. Title.Size = UDim2.new(0, 386, 0, 50)
  160. Title.Font = Enum.Font.SciFi
  161. Title.Text = "Rudra's Admin GUI"
  162. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  163. Title.TextScaled = true
  164. Title.TextSize = 14.000
  165. Title.TextWrapped = true
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement