Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Ban Hammer GUI created by: GODZILLAGAMERZ13.
- -- I'm godzillagamerz10. I use GODZILLAGAMERZ13 nw because my sister logged me out of godzillagamerz10.
- print'Abuse this as much as you want'
- warn'Ban Hammer GUI by: GODZILLAGAMERZ13.'
- local KickPlayer = Instance.new("RemoteEvent", game.ReplicatedStorage)
- local KickGui = Instance.new("ScreenGui")
- local GuiToggle = Instance.new("TextButton")
- local Body = Instance.new("Frame")
- local Player = Instance.new("TextBox")
- local Kick = Instance.new("TextButton")
- local Reason = Instance.new("TextBox")
- local CreatorName = Instance.new("TextLabel")
- KickGui.Name = "KickGui"
- KickGui.Parent = game.Workspace.KickScript
- KickGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- KickGui.ResetOnSpawn = false
- KickPlayer.Name = "KickPlayer" -- This is the only important thing that you need for the event.
- GuiToggle.Name = "GuiToggle"
- GuiToggle.Parent = KickGui
- GuiToggle.BackgroundColor3 = Color3.new(0.188235, 0.537255, 0.862745)
- GuiToggle.BorderSizePixel = 0
- GuiToggle.Position = UDim2.new(-0.000664680731, 0, 0.936935604, 0)
- GuiToggle.Size = UDim2.new(0.0876619443, 0, 0.063064374, 0)
- GuiToggle.Font = Enum.Font.Gotham
- GuiToggle.Text = "Kick GUI"
- GuiToggle.TextColor3 = Color3.new(0, 0, 0)
- GuiToggle.TextScaled = true
- GuiToggle.TextSize = 25
- GuiToggle.TextWrapped = true
- Body.Name = "Body"
- Body.Parent = KickGui
- Body.BackgroundColor3 = Color3.new(0.137255, 0.247059, 0.862745)
- Body.BorderSizePixel = 0
- Body.Position = UDim2.new(0.279656172, 0, 0.225590557, 0)
- Body.Size = UDim2.new(0.250620782, 0, 0.619685054, 0)
- Body.Visible = false
- Player.Name = "Player"
- Player.Parent = Body
- Player.BackgroundColor3 = Color3.new(1, 1, 1)
- Player.BackgroundTransparency = 0.80000001192093
- Player.BorderSizePixel = 0
- Player.Position = UDim2.new(-0.00286217709, 0, 0.259395421, 0)
- Player.Size = UDim2.new(1.00286233, 0, 0.158454224, 0)
- Player.Font = Enum.Font.SourceSansBold
- Player.PlaceholderColor3 = Color3.new(0, 0, 0)
- Player.PlaceholderText = "Username"
- Player.Text = ""
- Player.TextColor3 = Color3.new(0, 0, 0)
- Player.TextSize = 30
- Player.TextWrapped = true
- Kick.Name = "Kick"
- Kick.Parent = Body
- Kick.BackgroundColor3 = Color3.new(0.290196, 0.658824, 0.0117647)
- Kick.BackgroundTransparency = 1
- Kick.BorderSizePixel = 0
- Kick.Position = UDim2.new(0.0356509723, 0, 0.718069911, 0)
- Kick.Size = UDim2.new(0.922745585, 0, 0.230758965, 0)
- Kick.Font = Enum.Font.Antique
- Kick.Text = "Kick"
- Kick.TextColor3 = Color3.new(1, 0, 0.0156863)
- Kick.TextScaled = true
- Kick.TextSize = 25
- Kick.TextWrapped = true
- Reason.Name = "Reason"
- Reason.Parent = Body
- Reason.BackgroundColor3 = Color3.new(1, 1, 1)
- Reason.BackgroundTransparency = 0.80000001192093
- Reason.BorderSizePixel = 0
- Reason.Position = UDim2.new(-0.00217062631, 0, 0.471769422, 0)
- Reason.Size = UDim2.new(1.00217068, 0, 0.185587108, 0)
- Reason.Font = Enum.Font.SourceSansBold
- Reason.PlaceholderColor3 = Color3.new(0, 0, 0)
- Reason.PlaceholderText = "Reason"
- Reason.Text = ""
- Reason.TextColor3 = Color3.new(0, 0, 0)
- Reason.TextScaled = true
- Reason.TextSize = 30
- Reason.TextWrapped = true
- CreatorName.Name = "CreatorName"
- CreatorName.Parent = Body
- CreatorName.BackgroundColor3 = Color3.new(1, 1, 1)
- CreatorName.BackgroundTransparency = 1
- CreatorName.Size = UDim2.new(0, 262, 0, 102)
- CreatorName.Font = Enum.Font.SourceSans
- CreatorName.Text = "Ban Hammer GUI by: GODZILLAGAMERZ13."
- CreatorName.TextColor3 = Color3.new(0, 0, 0)
- CreatorName.TextScaled = true
- CreatorName.TextSize = 14
- CreatorName.TextStrokeColor3 = Color3.new(1, 1, 1)
- CreatorName.TextStrokeTransparency = 0
- CreatorName.TextWrapped = true
- --- Scripts:
- function SCRIPT_XNAB85_FAKESCRIPT() -- KickGui.BackAtItAgainWithTheBadScriptNames
- local script = Instance.new('LocalScript')
- script.Parent = KickGui
- local frame = script.Parent.Body
- script.Parent.GuiToggle.MouseButton1Click:Connect(function()
- if frame.Visible == true then
- frame.Visible = false
- else
- frame.Visible = true
- end
- end)
- frame.Kick.MouseButton1Click:Connect(function()
- if game.Players:FindFirstChild(frame.Player.Text) then
- game.ReplicatedStorage.KickPlayer:FireServer(frame.Player.Text, frame.Reason.Text)
- end
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_XNAB85_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement