Advertisement
ROBLOX_SCRIPT_SHARE

FLING SCRIPT

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