DefeatedPurpose

Kick Script

Jul 6th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.24 KB | None | 0 0
  1. --Made by [Certified Weeb]#6917
  2.  
  3. local players = game:GetService("Players")
  4. local b = Instance.new("Tool") --Can be changed to "Hopperbin"
  5. target = "victimNAME" --Full Name, Optional
  6. reason = "reasonHERE"
  7. local tgt = players[target]
  8. tgt.Character.Head.face.Texture = 141728790
  9. y = Instance.new("BillboardGui")
  10. y.Size = UDim2.new(0,100,0,150)
  11. y.StudsOffset = Vector3.new(0,1,0)
  12. y.Parent = players[target].Character.Head
  13. y.Adornee = players[target].Character.Head
  14. f = Instance.new("TextLabel")
  15. f.Parent = y
  16. f.BackgroundTransparency = 1
  17. f.Position = UDim2.new(0,0,0,-50)
  18. f.Size = UDim2.new(0,100,0,100)
  19. f.Font = "Highway"
  20. f.FontSize = "Size48"
  21. f.Text = 'Kicked : ['..reason..']'
  22. f.TextStrokeColor3 = Color3.new(0,0,0)
  23. f.TextColor3 = Color3.new(math.random(1, 255)), Color3.new(math.random(1, 255)), Color3.new(math.random(1, 255))
  24. f.TextStrokeTransparency = 0
  25. f.TextYAlignment = "Bottom"
  26. tgt.Backpack:ClearAllChildren()
  27. b.Parent = tgt.Backpack
  28. b.Name = 'Kicked : ['..reason..']'
  29. local amount = 25 --Editable (Reccommend 25)
  30. for i=1, amount do
  31. local players = game:GetService("Players")
  32. local a = Instance.new("SkateboardPlatform")
  33. a.Name = "Certified Weeb"
  34. a.Transparency = 1 --Made invisible so victim wouldn't notice, Feel free to change.
  35. for i,v in pairs(tgt.Character:GetChildren()) do
  36.     if v.Name~="Head" and v:IsA("Part") then
  37.     v.Transparency = 1
  38.     end
  39.     if v:IsA("Accessory") then
  40.     v:Remove()
  41.     end
  42. end
  43. a.Parent = tgt.Character
  44. a.Position = tgt.Character.Torso.Position
  45. a.Anchored = true --You can set it to false if you want
  46. for i,v in pairs(tgt.Character:GetChildren()) do
  47.     if v:IsA("Humanoid") then
  48.        v.WalkSpeed = 0
  49.        v.Name = "HumanoidKICK"
  50.        end
  51. end
  52. wait(0.1)
  53. for i,v in pairs(tgt.Character:GetChildren()) do
  54.     for i=1, amount do
  55.         if v:IsA("Humanoid") then
  56.            v.Jump = true
  57.         end
  58.     end
  59. end
  60. end
  61. print('Successfully kicked ['..target..'] with reason ['..reason..']')
  62. game:FindService('StarterGui'):SetCore('SendNotification', {
  63.     Title = 'Certified Weeb',
  64.     Text = 'Successfully kicked '..target..'!',
  65.     Icon = [[http://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&Format=Png&userName=]]..target..[[&RAND]] .. math.random(1,100000000),
  66.     Duration = 5,
  67. })
Add Comment
Please, Sign In to add comment