Hack To Kick Out Roblox Players

Local Target = Players:FindFirstChild (string.sub (Message,6)) - Defending the target using a varbile. Stirng.sub is the time used to get all of the characters behind 'kick '. If Target = nil then Checking if the target is found using a if statement.

  1. Roblox Kick Off Hack Script
Aug 24th, 2019
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!

Roblox Kick Off Hack Script

  1. -- Version: 2.82
  2. local KickGui = Instance.new('ScreenGui')
  3. local Frame = Instance.new('Frame')
  4. local Kick = Instance.new('TextButton')
  5. local Reason = Instance.new('TextBox')
  6. KickGui.Name = 'KickGui'
  7. KickGui.Parent = game.ServerScriptService.KickHandler
  8. KickGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9. GuiToggle.Parent = KickGui
  10. GuiToggle.BackgroundTransparency = 0.20000000298023
  11. GuiToggle.Position = UDim2.new(0.00616903137, 0, 0.903864682, 0)
  12. GuiToggle.Size = UDim2.new(0.0876619443, 0, 0.0782608688, 0)
  13. GuiToggle.Text = 'Kick Player'
  14. GuiToggle.TextScaled = true
  15. GuiToggle.TextWrapped = true
  16. Frame.Parent = KickGui
  17. Frame.BackgroundTransparency = 0.20000000298023
  18. Frame.Position = UDim2.new(0.400000006, 0, 0.349999994, 0)
  19. Frame.Size = UDim2.new(0.200000003, 0, 0.300000012, 0)
  20. Player.Parent = Frame
  21. Player.BackgroundTransparency = 0.10000000149012
  22. Player.Position = UDim2.new(0.0500000641, 0, 0.059661787, 0)
  23. Player.Size = UDim2.new(0.899999976, 0, 0.158454224, 0)
  24. Player.PlaceholderColor3 = Color3.new(0, 0, 0)
  25. Player.Text = '
  26. Player.TextSize = 30
  27. Kick.Parent = Frame
  28. Kick.BackgroundTransparency = 0.10000000149012
  29. Kick.Position = UDim2.new(0.049352251, 0, 0.63285023, 0)
  30. Kick.Size = UDim2.new(0.302590966, 0, 0.300000012, 0)
  31. Kick.Text = 'Kick'
  32. Kick.TextSize = 25
  33. Cancel.Parent = Frame
  34. Cancel.BackgroundTransparency = 0.10000000149012
  35. Cancel.Position = UDim2.new(0.644663751, 0, 0.63285023, 0)
  36. Cancel.Size = UDim2.new(0.302590966, 0, 0.300000012, 0)
  37. Cancel.Text = 'Cancel'
  38. Cancel.TextSize = 25
  39. Reason.Parent = Frame
  40. Reason.BackgroundTransparency = 0.10000000149012
  41. Reason.Position = UDim2.new(0.0500000641, 0, 0.248067647, 0)
  42. Reason.Size = UDim2.new(0.899999976, 0, 0.361352742, 0)
  43. Reason.PlaceholderColor3 = Color3.new(0, 0, 0)
  44. Reason.Text = '
  45. Reason.TextSize = 30
  46. -- Scripts:
  47. function SCRIPT_YUCB77_FAKESCRIPT() -- KickGui.LocalScript
  48. script.Parent = KickGui
  49. script.Parent.GuiToggle.MouseButton1Click:connect(function()
  50. frame.Visible = false
  51. frame.Visible = true
  52. end)
  53. frame.Cancel.MouseButton1Click:connect(function()
  54. end)
  55. frame.Kick.MouseButton1Click:connect(function()
  56. if game.Players:FindFirstChild(frame.Player.Text) then
  57. game.ReplicatedStorage.KickPlayer:FireServer(frame.Player.Text, frame.Reason.Text)
  58. end)
  59. end
  60. coroutine.resume(coroutine.create(SCRIPT_YUCB77_FAKESCRIPT))
Out
Nov 27th, 2014
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. local admin = 'itsJaden2' --Who is the one who has the admin.
  2. local Players = Game:GetService('Players') Definding service using a varaiable.
  3. Players.PlayerAdded:connect(function(Player)--Event and function when a player has joined.
  4. if Player.Name Admin then --Checking if the player is the admin.
  5. Player.Chatted:connect(function(Message)-- Event
  6. if Message ~= nil then --Checking if the message is not nil with the if statement. (The Message is in nil when teamchat is used.
  7. if string.lower(string.sub(Message,1, 4) 'kick' then --Checking if the kick command is used string.sub is used to get serval characters of the string, this cause the first four. string.lower is used to convert the string to a lowercase string. Saying KICK or Kick instead of kick would work as well.
  8. local Target = Players:FindFirstChild(string.sub(Message,6)) -- Defending the target using a varbile. stirng.sub is the time used to get all of the characters behind 'kick '.
  9. if Target ~= nil then Checking if the target is found using a if statement.
  10. Target:Kick() --Removing the target from the game using the: Kick() method on the player object.
  11. end -- Closing the statement if event at line twevle
  12. end) --Closing the statement if event at line nine.
  13. end) --Closing the statement if event at line eight.
  14. end) -- Closing the if statement at line six.
RAW Paste Data
Roblox kick hack script