Advertisement
Godzillagamerzz10

Ban Hammer GUI (I THINK THIS IS FE)

May 27th, 2019
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.23 KB | None | 0 0
  1. -- Ban Hammer GUI created by: GODZILLAGAMERZ13.
  2. -- I'm godzillagamerz10. I use GODZILLAGAMERZ13 nw because my sister logged me out of godzillagamerz10.
  3.  
  4.  
  5. print'Abuse this as much as you want'
  6. warn'Ban Hammer GUI by: GODZILLAGAMERZ13.'
  7.  
  8. local KickPlayer = Instance.new("RemoteEvent", game.ReplicatedStorage)
  9. local KickGui = Instance.new("ScreenGui")
  10. local GuiToggle = Instance.new("TextButton")
  11. local Body = Instance.new("Frame")
  12. local Player = Instance.new("TextBox")
  13. local Kick = Instance.new("TextButton")
  14. local Reason = Instance.new("TextBox")
  15. local CreatorName = Instance.new("TextLabel")
  16.  
  17. KickGui.Name = "KickGui"
  18. KickGui.Parent = game.Workspace.KickScript
  19. KickGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20. KickGui.ResetOnSpawn = false
  21.  
  22. KickPlayer.Name = "KickPlayer" -- This is the only important thing that you need for the event.
  23.  
  24. GuiToggle.Name = "GuiToggle"
  25. GuiToggle.Parent = KickGui
  26. GuiToggle.BackgroundColor3 = Color3.new(0.188235, 0.537255, 0.862745)
  27. GuiToggle.BorderSizePixel = 0
  28. GuiToggle.Position = UDim2.new(-0.000664680731, 0, 0.936935604, 0)
  29. GuiToggle.Size = UDim2.new(0.0876619443, 0, 0.063064374, 0)
  30. GuiToggle.Font = Enum.Font.Gotham
  31. GuiToggle.Text = "Kick GUI"
  32. GuiToggle.TextColor3 = Color3.new(0, 0, 0)
  33. GuiToggle.TextScaled = true
  34. GuiToggle.TextSize = 25
  35. GuiToggle.TextWrapped = true
  36.  
  37. Body.Name = "Body"
  38. Body.Parent = KickGui
  39. Body.BackgroundColor3 = Color3.new(0.137255, 0.247059, 0.862745)
  40. Body.BorderSizePixel = 0
  41. Body.Position = UDim2.new(0.279656172, 0, 0.225590557, 0)
  42. Body.Size = UDim2.new(0.250620782, 0, 0.619685054, 0)
  43. Body.Visible = false
  44.  
  45. Player.Name = "Player"
  46. Player.Parent = Body
  47. Player.BackgroundColor3 = Color3.new(1, 1, 1)
  48. Player.BackgroundTransparency = 0.80000001192093
  49. Player.BorderSizePixel = 0
  50. Player.Position = UDim2.new(-0.00286217709, 0, 0.259395421, 0)
  51. Player.Size = UDim2.new(1.00286233, 0, 0.158454224, 0)
  52. Player.Font = Enum.Font.SourceSansBold
  53. Player.PlaceholderColor3 = Color3.new(0, 0, 0)
  54. Player.PlaceholderText = "Username"
  55. Player.Text = ""
  56. Player.TextColor3 = Color3.new(0, 0, 0)
  57. Player.TextSize = 30
  58. Player.TextWrapped = true
  59.  
  60. Kick.Name = "Kick"
  61. Kick.Parent = Body
  62. Kick.BackgroundColor3 = Color3.new(0.290196, 0.658824, 0.0117647)
  63. Kick.BackgroundTransparency = 1
  64. Kick.BorderSizePixel = 0
  65. Kick.Position = UDim2.new(0.0356509723, 0, 0.718069911, 0)
  66. Kick.Size = UDim2.new(0.922745585, 0, 0.230758965, 0)
  67. Kick.Font = Enum.Font.Antique
  68. Kick.Text = "Kick"
  69. Kick.TextColor3 = Color3.new(1, 0, 0.0156863)
  70. Kick.TextScaled = true
  71. Kick.TextSize = 25
  72. Kick.TextWrapped = true
  73.  
  74. Reason.Name = "Reason"
  75. Reason.Parent = Body
  76. Reason.BackgroundColor3 = Color3.new(1, 1, 1)
  77. Reason.BackgroundTransparency = 0.80000001192093
  78. Reason.BorderSizePixel = 0
  79. Reason.Position = UDim2.new(-0.00217062631, 0, 0.471769422, 0)
  80. Reason.Size = UDim2.new(1.00217068, 0, 0.185587108, 0)
  81. Reason.Font = Enum.Font.SourceSansBold
  82. Reason.PlaceholderColor3 = Color3.new(0, 0, 0)
  83. Reason.PlaceholderText = "Reason"
  84. Reason.Text = ""
  85. Reason.TextColor3 = Color3.new(0, 0, 0)
  86. Reason.TextScaled = true
  87. Reason.TextSize = 30
  88. Reason.TextWrapped = true
  89.  
  90. CreatorName.Name = "CreatorName"
  91. CreatorName.Parent = Body
  92. CreatorName.BackgroundColor3 = Color3.new(1, 1, 1)
  93. CreatorName.BackgroundTransparency = 1
  94. CreatorName.Size = UDim2.new(0, 262, 0, 102)
  95. CreatorName.Font = Enum.Font.SourceSans
  96. CreatorName.Text = "Ban Hammer GUI by: GODZILLAGAMERZ13."
  97. CreatorName.TextColor3 = Color3.new(0, 0, 0)
  98. CreatorName.TextScaled = true
  99. CreatorName.TextSize = 14
  100. CreatorName.TextStrokeColor3 = Color3.new(1, 1, 1)
  101. CreatorName.TextStrokeTransparency = 0
  102. CreatorName.TextWrapped = true
  103. --- Scripts:
  104.  
  105. function SCRIPT_XNAB85_FAKESCRIPT() -- KickGui.BackAtItAgainWithTheBadScriptNames
  106. local script = Instance.new('LocalScript')
  107. script.Parent = KickGui
  108. local frame = script.Parent.Body
  109.  
  110. script.Parent.GuiToggle.MouseButton1Click:Connect(function()
  111. if frame.Visible == true then
  112. frame.Visible = false
  113. else
  114. frame.Visible = true
  115. end
  116. end)
  117.  
  118. frame.Kick.MouseButton1Click:Connect(function()
  119. if game.Players:FindFirstChild(frame.Player.Text) then
  120. game.ReplicatedStorage.KickPlayer:FireServer(frame.Player.Text, frame.Reason.Text)
  121. end
  122. end)
  123.  
  124. end
  125. coroutine.resume(coroutine.create(SCRIPT_XNAB85_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement