Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Make sure to join our Discord for the newest exploits, for games, and roblox! https://discord.gg/jbfYfKa
- -- Also make sure to check out our youtube for roblox exploits! https://www.youtube.com/c/KiruzaExploits
- for i,player in pairs(game:GetService('Players'):GetPlayers()) do
- if player.TeamColor ~= game:GetService('Players').LocalPlayer.TeamColor then
- local weld = Instance.new('Weld',player.Character.Torso)
- local part = Instance.new('Part',player.Character)
- part.Size = Vector3.new(2,2,2)
- part.Material = "Neon"
- part.Transparency = .7
- part.Anchored = true
- part.BrickColor = BrickColor.new('Really Green')
- part.CFrame = player.Character.Torso.CFrame - Vector3.new(2,12,2)
- part.CanCollide = false
- weld.C0 = player.Character.Torso.CFrame:inverse()
- weld.Part0 = player.Character.Torso
- weld.C1 = part.CFrame:inverse()
- weld.Part1 = part
- spawn(function()
- while wait() do
- part.CFrame = player.Character.Torso.CFrame - Vector3.new(3,12,3)
- end
- end)
- end
- end
- spawn(function()
- while wait() do
- for i, v in pairs(game:GetService('Players'):GetChildren()) do
- if v.Name ~= game.Players.LocalPlayer.Name then
- if v.Character:FindFirstChild("Torso") then
- if v.Character.HumanoidRootPart then
- v.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character:FindFirstChild("Torso").CFrame + Vector3.new(0,12,0)
- end
- end
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement