Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- print("Insta Kill All Players Script Loaded!")
- warn("Made by Hamii/Tritium and Floof")
- local Player = game:GetService("Players").LocalPlayer
- local Mouse = Player:GetMouse()
- local Damage = function(Part)
- local A = Part
- local B = Part.Position
- local C = {
- origin = Player.Character.Head.Position,
- position = Part.Position,
- velocity = Player.Character.Head.CFrame.lookVector * Vector3.new(500, 100, 500),
- acceleration = Vector3.new(0, -156.2, 0),
- age = os.time(),
- toolFrom = "Magnetite Crossbow",
- object = game:GetService("ReplicatedStorage").Projectiles:findFirstChild("Bolt")
- }
- local D = (Player.Character.Head.Position - Part.Position).magnitude
- game:GetService("ReplicatedStorage").Events.ProjectileImpact:FireServer(A, B, C, D)
- end
- for i, v in pairs(game:GetService("Players"):GetPlayers()) do
- if v.Name ~= game:GetService("Players").LocalPlayer.Name then
- if v.Character then
- local Obj = v.Character.HumanoidRootPart;
- for i = 0, 35 do
- Damage(Obj)
- wait()
- end
- end
- else
- print("You tried to kill yourself nubb!! xD")
- end
- end
Add Comment
Please, Sign In to add comment