Advertisement
Scripter_hacker2022

FE kill script (FE 킬 스크립트)

Feb 6th, 2022
678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. --[[
  2. hello!
  3. by. unknown
  4. 공유 : 로늅이
  5. ]]--
  6.  
  7. local player = game.Players.LocalPlayer
  8. local character1 = player.Character
  9. local mouse = player:GetMouse()
  10.  
  11. local fakebody = Instance.new("Part", character1)
  12. fakebody.Transparency = 1
  13. fakebody.Anchored = true
  14. fakebody.CanCollide = false
  15. fakebody.Position = character1.Head.Position
  16. fakebody.Name = "FPart"
  17. wait()
  18.  
  19. _G.ReanimationType = "PDeath" --PDeath, Fling, Simple
  20. _G.Velocity = Vector3.new(36,0,0)
  21. _G.FlingBlock = true
  22. _G.FlingBlockTransparency = 1
  23. _G.HighlightFlingBlock = true
  24. _G.FlingBlockPosition = "FPart"
  25. _G.HighlightFlingBlockColor = Color3.fromRGB(255,0,0)
  26.  
  27. loadstring(game:HttpGet("https://raw.githubusercontent.com/GelatekWasTaken/Reanimation.lua/main/Main/Main.lua"))()
  28.  
  29. function GetPlayer(name)
  30. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  31. if v.DisplayName:lower():sub(1, #name) == name:lower() or v.Name:lower():sub(1, #name) == name:lower() then
  32. return v
  33. end
  34. end
  35. end
  36.  
  37. local plrs = game:GetService("Players")
  38. local plr = plrs.LocalPlayer
  39. local char = plr.Character
  40. local killing = false
  41. local victim = nil
  42.  
  43. plr.Chatted:Connect(function(msg)
  44. if string.sub(msg, 1, 6) == "/kill " then
  45. if plrs:FindFirstChild(string.sub(msg, 7)) then
  46. victim = plrs:FindFirstChild(string.sub(msg, 7))
  47. killing = true
  48. wait(2)
  49. killing = false
  50. else
  51. if GetPlayer(string.sub(msg, 7)) then
  52. victim = GetPlayer(string.sub(msg, 7))
  53. killing = true
  54. wait(2)
  55. killing = false
  56. else
  57. print("Player not found!")
  58. end
  59. end
  60. end
  61. end)
  62.  
  63. plrs.PlayerRemoving:Connect(function(player)
  64. if player == victim then
  65. killing = false
  66. end
  67. end)
  68.  
  69. spawn(function()
  70. while game:GetService("RunService").Heartbeat:Wait() do
  71. if killing == false then
  72. character1.Reanimate.FPart.Position = game.Players.LocalPlayer.Character.Torso.Position
  73. else
  74. if victim.Character:FindFirstChildOfClass("Humanoid").RigType == Enum.HumanoidRigType.R6 then
  75. character1.Reanimate.FPart.Position = victim.Character.Torso.Position
  76. else
  77. character1.Reanimate.FPart.Position = victim.Character.UpperTorso.Position
  78. end
  79. end
  80. end
  81. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement