SHARE
TWEET

Untitled




Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- --USE THIS ON FFA ROUND--
- _G.FFA = true
- game:GetService('RunService').Stepped:connect(function()
- game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid"):ChangeState(11)
- end)
- while _G.FFA do
- for i , v in pairs(game.Players:GetChildren()) do
- if v ~= game.Players.LocalPlayer and v.Character ~= nil and v.Character:FindFirstChild("HumanoidRootPart") and v.Character.Humanoid.FloorMaterial ~= "Air" then
- repeat
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Character.HumanoidRootPart.Position + Vector3.new(-5, 20, 0), v.Character.HumanoidRootPart.Position)
- until v.Character.Humanoid.Health < 1
- end
- end
- end
- --USE THIS FOR TDM ROUND--
- _G.TDM = true
- game:GetService('RunService').Stepped:connect(function()
- game.Players.LocalPlayer.Character:findFirstChildOfClass("Humanoid"):ChangeState(11)
- end)
- while _G.TDM do
- for i , v in pairs(game.Players:GetChildren()) do
- if v ~= game.Players.LocalPlayer and v.Character ~= nil and v.Character:FindFirstChild("HumanoidRootPart") and v.Team ~= game.Players.LocalPlayer.Team and v.Character.Humanoid.FloorMaterial ~= "Air" then
- repeat
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Character.HumanoidRootPart.Position + Vector3.new(-5, 20, 0), v.Character.HumanoidRootPart.Position)
- until v.Character.Humanoid.Health < 1
- end
- end
- end
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy.