Advertisement
D3vious

Untitled

Aug 3rd, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. BanList={"Guest656465","Luc_ey"}
  2.  
  3. function getPlayer(plr)
  4. for _, player in pairs(game.Players:GetPlayers()) do
  5. if player.Name:lower():sub(1,#plr) == plr:lower() then
  6. return player
  7. end
  8. end
  9. end
  10.  
  11.  
  12. local c=function(f) coroutine.resume(coroutine.create(f)) end
  13. local remove=true
  14. if remove==true then pcall(function() script:remove() end) end
  15. while true do
  16. wait()
  17. for i, v in pairs(game.Players:children()) do
  18. for i, vv in pairs(BanList) do
  19. if v.Name:lower()==vv:lower() then
  20. c(function()
  21. local Bait = Instance.new('SkateboardPlatform', v.Character)
  22. Bait.Name = ''
  23. Bait.CFrame = CFrame.new(math.random(-1000, 1000), 1000, math.random(-1000, 1000))
  24. Bait.CanCollide = false
  25. Bait.Anchored = false
  26. Bait.Transparency = 1
  27. Bait.Size = Vector3.new(5, 1, 5)
  28.  
  29. wait(0.2)
  30.  
  31. local Fish = Instance.new('Weld', game.Workspace)
  32. Fish.Name = ''
  33. Fish.Part0 = v.Character.Torso
  34. Fish.Part1 = Bait
  35. Fish.C0 = CFrame.new(0, -500, 0)
  36.  
  37. v.Character.Humanoid.WalkSpeed = 0
  38. v.Character.Humanoid.Jump = true
  39.  
  40. wait(0.5)
  41.  
  42. Bait.Anchored = true
  43. Fish:remove()
  44. end)
  45. v:remove()
  46. end
  47. end
  48. end
  49. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement