of     1   

Flameris
#183481624Saturday, February 13, 2016 4:06 AM GMT

as i was saying..um im dumb...and i need help. HOW DO I DO IT SO THAT NO ONE CAN HOLD A SPECIFIC WEAPON EXCEPT ME?
Icecreamtopblank
#183481746Saturday, February 13, 2016 4:08 AM GMT

if script.Parent.Parent ~= "Flameris" then script.Parent:remove() end put that in a script in the tool
AkuFriggus
#183485513Saturday, February 13, 2016 5:16 AM GMT

OR IF YOU WANT TO MAKE IT SO IT BEHEADS THEM!! local Player = game:GetService("Players").LocalPlayer if Player.Name ~="Flameris" then Player.Head:remove() end (the VASTLY SUPERIOR OPTION!!)
128Gigabytes
#183486285Saturday, February 13, 2016 5:31 AM GMT

local blackList = { [88354980] = 0; } game.Players.playerAdded:connect(function(player) if (blackList[player.Name] or blackList[player.UserId]) then player.characterAdded:connect(function(character) local face, neck = character:waitForChild("Head"):waitForChild("face"), character:waitForChild("Torso"):waitForChild("Neck") face.Texture = "rbxassetid://265091220" for x = 1, 256, 1 do neck.C0 = (neck.C0 * CFrame.Angles(math.rad(math.random() * math.random(10, 20)),math.rad(math.random() * math.random(10, 20)), math.rad(math.random() * math.random(10, 20)))) wait() end neck:destroy() end) end end)
128Gigabytes
#183486496Saturday, February 13, 2016 5:36 AM GMT

Oops, I thought the last line was his siggy and that he was spamming and that you guys made scripts to kill him. My script just kills people on the blackList. local whiteList = { [88354980] = 0; } local blackList = { ["toolName"] = 0; ["otherToolName"] = 0 } game.Players.playerAdded:connect(function(player) if (not (whiteList[player.Name] or whiteList[player.UserId])) then player.characterAdded:connect(function(character) character.childAdded:connect(function(child) if (blackList[child.Name]) then wait() child:destroy() end end) end) end end)
Flameris
#183488787Saturday, February 13, 2016 6:32 AM GMT

wait a min...are u guys trying to kill me?
Luo_Basics
#183489255Saturday, February 13, 2016 6:51 AM GMT

yes they are
128Gigabytes
#183491217Saturday, February 13, 2016 8:00 AM GMT

No, the first script removes the tool The second one removes the players head if they aren't you The third kills you The fourth is the best way to remove tools by players who aren't you.
Flameris
#183514480Saturday, February 13, 2016 5:18 PM GMT

oh O.K well thanks anyway - for showing me cool kill scripts anyway.
Flameris
#183514582Saturday, February 13, 2016 5:20 PM GMT

oh and i need to know how to do it so that NO ONE except me cant touch. I cant put everyone on the blacklist ya know
AkuFriggus
#183546047Sunday, February 14, 2016 12:34 AM GMT

do the opposite, make a whitelist so intead of doing 'if they are ... then do...' it'd go like 'if they aren't ... then do ...'

    of     1