Fling Things And People Script | HAVE A SPAZ

Created by BaconLord

Features:

  • HAVE A SPAZ
  •  
  • DEV NOTES:
  • Also you cant pick up anything because it uses your set owner to target everyone in the server have to be near someone but not to close becasue of the range
game:GetService("RunService").RenderStepped:Connect(function()
for i,v in pairs(game.Players:GetPlayers()) do
if v.Name == game.Players.LocalPlayer.Name then
else
local args = {
[1] = game:GetService("Players")[v.Name].Character.HumanoidRootPart,
[2] = "player"
}
game:GetService("ReplicatedStorage").SetNetworkOwner:FireServer(unpack(args))
end end end)