0% found this document useful (0 votes)
409 views1 page

Cool Roblox Kill Script Guide

This script allows a player to enter another player's username. It then clones the local player's character and destroys the original. It equips any tools from the player's backpack. The script teleports the local player and targeted player to each other's locations before teleporting the local player far away, seemingly killing both characters.

Uploaded by

AlexLee26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
409 views1 page

Cool Roblox Kill Script Guide

This script allows a player to enter another player's username. It then clones the local player's character and destroys the original. It equips any tools from the player's backpack. The script teleports the local player and targeted player to each other's locations before teleporting the local player far away, seemingly killing both characters.

Uploaded by

AlexLee26
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

-- illremember's cool fe kill script

-- enter user's name, and watch as you both die together


Target = "USERNAME"

game.Players.LocalPlayer.Character.Humanoid.Name = 1
local l = game.Players.LocalPlayer.Character["1"]:Clone()
l.Parent = game.Players.LocalPlayer.Character
l.Name = "Humanoid"
wait(0.1)
game.Players.LocalPlayer.Character["1"]:Destroy()
game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
game.Players.LocalPlayer.Character.Animate.Disabled = true
wait(0.1)
game.Players.LocalPlayer.Character.Animate.Disabled = false
game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
for i,v in pairs(game:GetService'Players'.LocalPlayer.Backpack:GetChildren())do
game.Players.LocalPlayer.Character.Humanoid:EquipTool(v)
end
wait(0.1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
game.Players[Target].Character.HumanoidRootPart.CFrame
wait(0.1)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
game.Players[Target].Character.HumanoidRootPart.CFrame
wait(0.2)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
CFrame.new(Vector3.new(-10000,-100, -10000))

You might also like