0% found this document useful (1 vote)
3K views2 pages

Roblox Kill Player Script Guide

This document contains Lua code that allows a player to target and kill other players in a game. It defines functions to get player objects by name, randomly select a kill method, and continuously teleport to and attack the target player until they die or move too far away. The code anchors and moves the player's torso and equips a tool to simulate melee attacks on the target.

Uploaded by

DanICover
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 (1 vote)
3K views2 pages

Roblox Kill Player Script Guide

This document contains Lua code that allows a player to target and kill other players in a game. It defines functions to get player objects by name, randomly select a kill method, and continuously teleport to and attack the target player until they die or move too far away. The code anchors and moves the player's torso and equips a tool to simulate melee attacks on the target.

Uploaded by

DanICover
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
  • Player Interaction Script
  • Tool Manipulation Script

superskater911="Enter the username here"--edit this line

local lplayer = game:GetService('Players').LocalPlayer


local killing = false
function GetPlayer(String)
local Found = {}
local strl = String:lower()
if strl == "all" then
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
[Link](Found,v)
end
elseif strl == "others" then
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
if [Link] ~= [Link] then
[Link](Found,v)
end
end
elseif strl == "me" then
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
if [Link] == [Link] then
[Link](Found,v)
end
end
else
for i,v in pairs(game:GetService("Players"):GetPlayers()) do
if [Link]:lower():sub(1, #String) == String:lower() then
[Link](Found,v)
end
end
end
return Found
end
function ahh(thing)
local asd = {'kill','gui','kill gui'}
local f = [Link](asd[[Link](1,#asd)])
return f
end

for i,v in pairs(GetPlayer(superskater911)) do

local LocalPlayer = game:GetService("Players").LocalPlayer


local target = game:GetService("Players")[[Link]]
local torsoname = "Torso"
if [Link]:FindFirstChild("Humanoid").RigType ==
[Link].R15 then
torsoname = "UpperTorso"
end
if [Link] ~= nil then
local savepos = [Link]:FindFirstChild("HumanoidRootPart").CFrame
[Link]:FindFirstChild(torsoname).Anchored = true
local tool = [Link]("Tool", [Link])
local hat = [Link]:FindFirstChildOfClass("Accessory")
local hathandle = [Link]
[Link] = tool
[Link] = true
[Link] = [Link](0, 9e99, 0)
[Link] = [Link]
repeat wait() until [Link]:FindFirstChildOfClass("Tool") ~= nil
[Link] = [Link]([Link](0, 0, 0))
[Link]:FindFirstChild(torsoname).Anchored = false
repeat
[Link]:FindFirstChild("HumanoidRootPart").CFrame =
[Link]:FindFirstChild("HumanoidRootPart").CFrame
wait()
until [Link] == nil or
[Link]:FindFirstChild("Humanoid").Health <= 0 or [Link] ==
nil or [Link]:FindFirstChild("Humanoid").Health <= 0 or
([Link]:FindFirstChild("HumanoidRootPart").[Link] -
[Link]:FindFirstChild("Humanoid").WalkSpeed) >
([Link]:FindFirstChild("Humanoid").WalkSpeed + 20)
[Link]:FindFirstChild("Humanoid"):UnequipTools()
[Link] = hat
[Link] = false
tool:Destroy()
[Link]:FindFirstChild("HumanoidRootPart").CFrame = savepos
end
end

superskater911="Enter the username here"--edit this line
local lplayer = game:GetService('Players').LocalPlayer
local killing
tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
    LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
    rep

You might also like