teotv202

ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤDeath Note Script(Invisible) ㅤㅤㅤㅤㅤ ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

Jul 20th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Handle = Instance.new('Part')
  2.  
  3. local Mesh = Instance.new('SpecialMesh')
  4.  
  5. local Death = Instance.new('Tool')
  6.  
  7. Death.Name = "DeathNote"
  8.  
  9. Handle.Name = "Handle"
  10.  
  11. Handle.Transparency = .4
  12.  
  13. Death.Parent = game:GetService("Players").LocalPlayer.Backpack
  14.  
  15. Death.GripForward = Vector3.new(0.331, -0.766, 0.551)
  16.  
  17. Death.GripPos = Vector3.new(-0.8, 0, -0.8)
  18.  
  19. Death.GripRight = Vector3.new(-0.943, -0.297, 0.152)
  20.  
  21. Death.GripUp = Vector3.new(-0.048, 0.57, 0.82)
  22.  
  23. Death.ToolTip = "Kill your rival"
  24.  
  25. Handle.Parent = Death
  26.  
  27. Mesh.Parent = Handle
  28.  
  29. Mesh.MeshId = "http://www.roblox.com/asset/?id=1136139"
  30.  
  31. Mesh.TextureId = "http://www.roblox.com/asset/?id=18276952"
  32.  
  33. Mesh.Scale = Vector3.new(0.55, 0.174, 0.6)
  34.  
  35. Handle.Rotation = Vector3.new(0,-90,0)
  36.  
  37. Death.Equipped:connect(function(mouse)
  38.  
  39. local Bounce = Enum.EasingStyle.Bounce
  40.  
  41. local Quad = Enum.EasingStyle.Quad
  42.  
  43. local Normal = Enum.EasingStyle.Linear
  44.  
  45.  
  46.  
  47. local ScreenGui = Instance.new("ScreenGui", game:GetService("Players")["LocalPlayer"].PlayerGui)
  48.  
  49. ScreenGui.Name = "Death Note"
  50.  
  51.  
  52.  
  53. local open = Instance.new("ImageButton", ScreenGui)
  54.  
  55. open.Position = UDim2.new(1, -110, 1, 500)
  56.  
  57. open.Size = UDim2.new(0, 100,0, 150)
  58.  
  59. open.Image = "rbxassetid://18536731"
  60.  
  61. open:TweenPosition(UDim2.new(1, -110, 1, -150), "In", Bounce, 0.8, true)
  62.  
  63.  
  64.  
  65. local Note = Instance.new("Frame", ScreenGui)
  66.  
  67. Note.Active = true
  68.  
  69. Note.Position = UDim2.new(1, -321, 1, 500)
  70.  
  71. Note.Size = UDim2.new(0, 320,0, 250)
  72.  
  73. Note.Visible = false
  74.  
  75. Note.Draggable = true
  76.  
  77.  
  78.  
  79. open.MouseButton1Down:connect(function()
  80.  
  81. open:TweenPosition(UDim2.new(open.Position.X.Scale,open.Position.X.Offset, 1, 500), "Out", Normal, 0.8, true)
  82.  
  83. wait(0.30)
  84.  
  85. open.Visible = false
  86.  
  87. Note.Visible = true
  88.  
  89. Note.Position = UDim2.new(1, -321, 1, 500)
  90.  
  91. Note:TweenPosition(UDim2.new(1, -321, 1, -251), "In", Normal, 0.5, true)
  92.  
  93. end)
  94.  
  95.  
  96.  
  97. local bg = Instance.new("Frame", Note)
  98.  
  99. bg.BackgroundColor3 = Color3.fromRGB(31, 31, 31)
  100.  
  101. bg.Size = UDim2.new(0, 160,0, 250)
  102.  
  103. bg.ZIndex = 2
  104.  
  105.  
  106.  
  107. -- Background
  108.  
  109.  
  110.  
  111. local close = Instance.new("TextButton", bg)
  112.  
  113. close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  114.  
  115. close.BackgroundTransparency = 1
  116.  
  117. close.Position = UDim2.new(0, 8,0, 10)
  118.  
  119. close.Size = UDim2.new(0, 10,0, 10)
  120.  
  121. close.ZIndex = 4
  122.  
  123. close.Font = "Cartoon"
  124.  
  125. close.Text = "X"
  126.  
  127. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  128.  
  129. close.TextSize = "17"
  130.  
  131.  
  132.  
  133. close.MouseButton1Down:connect(function()
  134.  
  135. Note:TweenPosition(UDim2.new(Note.Position.X.Scale,Note.Position.X.Offset,1, 500), "Out", Normal, 0.5, true)
  136.  
  137. wait(0.30)
  138.  
  139. Note.Visible = false
  140.  
  141. open.Visible = true
  142.  
  143. open:TweenPosition(UDim2.new(1, -110, 1, -150), "In", Normal, 0.8, true)
  144.  
  145. end)
  146.  
  147.  
  148.  
  149. local image1 = Instance.new("ImageLabel", bg)
  150.  
  151. image1.BackgroundTransparency = 1
  152.  
  153. image1.Size = UDim2.new(1, 0,1, 0)
  154.  
  155. image1.ZIndex = 3
  156.  
  157. image1.Image = "rbxassetid://18528551"
  158.  
  159.  
  160.  
  161. local title = Instance.new("TextLabel", bg)
  162.  
  163. title.BackgroundTransparency = 1
  164.  
  165. title.Position = UDim2.new(0, 0,0, 30)
  166.  
  167. title.Size = UDim2.new(1, 0,0, 30)
  168.  
  169. title.ZIndex = 4
  170.  
  171. title.Font = "Bodoni"
  172.  
  173. title.Text = " Death Note "
  174.  
  175. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  176.  
  177. title.TextSize = "18"
  178.  
  179.  
  180.  
  181. local body = Instance.new("TextLabel", bg)
  182.  
  183. body.BackgroundTransparency = 1
  184.  
  185. body.Position = UDim2.new(0, 15,0, 65)
  186.  
  187. body.Size = UDim2.new(0, 134,0, 40)
  188.  
  189. body.ZIndex = 4
  190.  
  191. body.Font = "Garamond"
  192.  
  193. body.Text = " Type in somebody's name to kill them. "
  194.  
  195. body.TextColor3 = Color3.fromRGB(255, 255, 255)
  196.  
  197. body.TextSize = "19"
  198.  
  199. body.TextWrapped = true
  200.  
  201. body.TextXAlignment = "Left"
  202.  
  203. body.TextYAlignment = "Top"
  204.  
  205.  
  206.  
  207. local line = Instance.new("TextLabel", body)
  208.  
  209. line.BackgroundTransparency = 1
  210.  
  211. line.Position = UDim2.new(0, 0,0, 50)
  212.  
  213. line.Size = UDim2.new(0, 130,0, 40)
  214.  
  215. line.ZIndex = 4
  216.  
  217. line.Font = "Garamond"
  218.  
  219. line.Text = "________________"
  220.  
  221. line.TextColor3 = Color3.fromRGB(255, 255, 255)
  222.  
  223. line.TextSize = "19"
  224.  
  225. line.TextWrapped = true
  226.  
  227. line.TextXAlignment = "Left"
  228.  
  229. line.TextYAlignment = "Top"
  230.  
  231.  
  232.  
  233. local text = Instance.new("TextLabel", body)
  234.  
  235. text.BackgroundTransparency = 1
  236.  
  237. text.Position = UDim2.new(0, 0,0, 100)
  238.  
  239. text.Size = UDim2.new(0, 134,0, 40)
  240.  
  241. text.ZIndex = 4
  242.  
  243. text.Font = "Garamond"
  244.  
  245. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  246.  
  247. text.TextSize = "19"
  248.  
  249. text.TextWrapped = true
  250.  
  251. text.TextXAlignment = "Left"
  252.  
  253. text.TextYAlignment = "Top"
  254.  
  255.  
  256.  
  257. -- Page
  258.  
  259.  
  260.  
  261. local page = Instance.new("Frame", Note)
  262.  
  263. page.BackgroundColor3 = Color3.fromRGB(236, 236, 236)
  264.  
  265. page.Position = UDim2.new(0, 160,0, 0)
  266.  
  267. page.Size = UDim2.new(0, 160,0, 250)
  268.  
  269. page.ZIndex = 2
  270.  
  271.  
  272.  
  273. local list = Instance.new("TextBox", page)
  274.  
  275. list.BackgroundTransparency = 1
  276.  
  277. list.Position = UDim2.new(0, 25,0, 20)
  278.  
  279. list.Size = UDim2.new(0.8, 5,0, 230)
  280.  
  281. list.ZIndex = 4
  282.  
  283. list.Font = "Antique"
  284.  
  285. list.Text = " Type in somebody's name to kill them. "
  286.  
  287. list.TextColor3 = Color3.fromRGB(0, 0, 0)
  288.  
  289. list.TextSize = "23"
  290.  
  291. list.TextWrapped = true
  292.  
  293. list.TextXAlignment = "Left"
  294.  
  295. list.TextYAlignment = "Top"
  296.  
  297.  
  298.  
  299. local image2 = Instance.new("ImageLabel", page)
  300.  
  301. image2.BackgroundTransparency = 1
  302.  
  303. image2.Size = UDim2.new(1, 0,1, 0)
  304.  
  305. image2.ZIndex = 3
  306.  
  307. image2.Image = "rbxassetid://170279713"
  308.  
  309. image2.Transparency = 0.2
  310.  
  311.  
  312.  
  313. --while true do
  314.  
  315. local Players = game:GetService("Players")
  316. local LocalPlayer = Players.LocalPlayer
  317.  
  318. local function RemoveSpaces(String)
  319.     return String:gsub("%s+", "") or String
  320. end
  321.  
  322. local function FindPlayer(String)
  323.     String = RemoveSpaces(String)
  324.     for _, _Player in pairs(Players:GetPlayers()) do
  325.         if _Player.Name:lower():match('^'.. String:lower()) then
  326.             return _Player
  327.         end
  328.     end
  329.     return nil
  330. end
  331.  
  332. repeat wait() until game:GetService("Players"):FindFirstChild(list.Text)
  333. local Target = FindPlayer(list.Text)
  334. if Target and Target.Character then
  335.     local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  336.     local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  337.        
  338.     local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  339.     Torso.Anchored = true
  340.     local tool = Instance.new("Tool", LocalPlayer.Backpack)
  341.     local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  342.     local hathandle = hat.Handle
  343.     hathandle.Parent = tool
  344.     hathandle.Massless = true
  345.     tool.GripPos = Vector3.new(0, 9e99, 0)
  346.     tool.Parent = LocalPlayer.Character
  347.     repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  348.     tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  349.     Torso.Anchored = false
  350.     repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  351.     until Target.Character == nil or Target.Character:FindFirstChild("Humanoid").Health <= 0 or LocalPlayer.Character == nil or LocalPlayer.Character:FindFirstChild("Humanoid").Health <= 0 or (Target.Character:FindFirstChild("HumanoidRootPart").Velocity.magnitude - Target.Character:FindFirstChild("Humanoid").WalkSpeed) > (Target.Character:FindFirstChild("Humanoid").WalkSpeed + 20)
  352.     LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  353.         hathandle.Parent = hat
  354.         hathandle.Massless = false
  355.         tool:Destroy()
  356.         LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  357.     else
  358.         warn'no player found named like that or he has no char'
  359.     end
  360. end)
  361.  
  362. Death.Unequipped:connect(function(mouse)
  363.  
  364. game:GetService("Players").LocalPlayer.PlayerGui["Death Note"]:remove()
  365.  
  366. end)
Add Comment
Please, Sign In to add comment