The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Fe Kill Command script pastebin roblox
By Fe Kill Command on 2024-09-22 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. --[[ Options ]]--
  2. _G.CharacterBug = false --Set to true if your uppertorso floats when you use godmode with R15 To R6.
  3. _G.GodMode = true --Set to true if you want godmode.
  4. _G.R6 = true --Set to true if you wanna enable R15 to R6 when your R15.
  5. --[[Reanimate]]--
  6. loadstring(game:HttpGet("https://paste.ee/r/pt8Dx/0"))()
  7. -----------------
  8. repeat wait() until _G.MSG ~= nil
  9. repeat wait() until _G.MSG.Text == ""
  10. -----------------
  11.  
  12. function GetPlayer(name)
  13.  for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  14.   if v.Name:lower():sub(1, #name) == name:lower() then
  15.    return v
  16.   end
  17.  end    
  18. end
  19.  
  20. local plrs = game:GetService("Players")
  21. local plr = plrs.LocalPlayer
  22. local char = plr.Character
  23. local hrp = char.HumanoidRootPart
  24. local killing = false
  25. local victim = nil
  26.  
  27. hrp.Transparency = 0.5
  28. if hrp:FindFirstChildOfClass("AlignPosition") then
  29.  hrp:FindFirstChildOfClass("AlignPosition"):Destroy()
  30. end
  31. if hrp:FindFirstChildOfClass("AlignOrientation") then
  32.  hrp:FindFirstChildOfClass("AlignOrientation"):Destroy()
  33. end
  34. local bp = Instance.new("BodyPosition", hrp)
  35. bp.D = 9999999
  36. bp.P = 999999999999999
  37. bp.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  38. flinger = Instance.new("BodyAngularVelocity",hrp)
  39. flinger.MaxTorque = Vector3.new(math.huge,math.huge,math.huge)
  40. flinger.P = 1000000000000000000000000000
  41. flinger.AngularVelocity = Vector3.new(10000,10000,10000)
  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(0.7)
  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(0.7)
  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.    bp.Position = char.NullwareReanim.Torso.Position
  73.   else
  74.    if victim.Character:FindFirstChildOfClass("Humanoid").RigType == Enum.HumanoidRigType.R6 then
  75.     bp.Position = victim.Character.Torso.Position
  76.    else
  77.     bp.Position = victim.Character.UpperTorso.Position
  78.    end
  79.   end
  80.  end
  81. end)



  • Recent Roblox Scripts