Free-Scripts

FE Death Note Script (ROBLOX)

May 5th, 2022 (edited)
847
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.72 KB | None | 0 0
  1. --Made by Hirari_Tear edited by average Growtopia animator, credits to expro for the GUI--
  2.  
  3. local player = game.Players.LocalPlayer
  4. local character1 = player.Character
  5. local mouse = player:GetMouse()
  6.  
  7. local fakebody = Instance.new("Part", character1)
  8. fakebody.Transparency = 1
  9. fakebody.Anchored = true
  10. fakebody.CanCollide = false
  11. fakebody.Position = character1.Head.Position
  12. fakebody.Name = "FPart"
  13. wait()
  14.  
  15. _G.ReanimationType = "PDeath" --PDeath, Fling, Simple
  16. _G.Velocity = Vector3.new(36,0,0)
  17. _G.FlingBlock = true
  18. _G.FlingBlockTransparency = 1
  19. _G.HighlightFlingBlock = true
  20. _G.FlingBlockPosition = "FPart"
  21. _G.HighlightFlingBlockColor = Color3.fromRGB(255,0,0)
  22.  
  23. loadstring(game:HttpGet("https://raw.githubusercontent.com/GelatekWasTaken/Reanimation.lua/main/Main/Main.lua"))()
  24.  
  25. function GetPlayer(name)
  26.  for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  27.   if v.DisplayName:lower():sub(1, #name) == name:lower() or v.Name:lower():sub(1, #name) == name:lower() then
  28.    return v
  29.   end
  30.  end    
  31. end
  32.  
  33. local plrs = game:GetService("Players")
  34. local plr = plrs.LocalPlayer
  35. local char = plr.Character
  36. local killing = false
  37. local victim = nil
  38.  
  39. plr.Chatted:Connect(function(msg)
  40.  if string.sub(msg, 1, 6) == "/kill " then
  41.   if plrs:FindFirstChild(string.sub(msg, 7)) then
  42.    victim = plrs:FindFirstChild(string.sub(msg, 7))
  43.    killing = true
  44.    wait(2)
  45.    killing = false
  46.   else
  47.    if GetPlayer(string.sub(msg, 7)) then
  48.     victim = GetPlayer(string.sub(msg, 7))
  49.     killing = true
  50.     wait(2)
  51.     killing = false
  52.    else
  53.     print("Player not found!")
  54.    end
  55.   end
  56.  end
  57. end)
  58.  
  59. plrs.PlayerRemoving:Connect(function(player)
  60.  if player == victim then
  61.   killing = false
  62.  end
  63. end)
  64.  
  65. spawn(function()
  66.  while game:GetService("RunService").Heartbeat:Wait() do
  67.   if killing == false then
  68.   else
  69.    if victim.Character:FindFirstChildOfClass("Humanoid").RigType == Enum.HumanoidRigType.R6 then
  70.     character1.Reanimate.FPart.Position = victim.Character.Torso.Position
  71.    else
  72.     character1.Reanimate.FPart.Position = victim.Character.UpperTorso.Position
  73.    end
  74.   end
  75.  end
  76. end)
  77.  
  78.  
  79. local ScreenGui = Instance.new("ScreenGui", game.Players["LocalPlayer"].PlayerGui)
  80.  
  81. ScreenGui.Name = "Death Note"
  82.  
  83.  
  84.  
  85. local open = Instance.new("ImageButton", ScreenGui)
  86.  
  87. open.Position = UDim2.new(1, -110, 1, 500)
  88.  
  89. open.Size = UDim2.new(0, 100,0, 150)
  90.  
  91. open.Image = "rbxassetid://18536731"
  92.  
  93. open:TweenPosition(UDim2.new(1, -110, 1, -150), "In", Bounce, 0.8, true)
  94.  
  95.  
  96.  
  97. local Note = Instance.new("Frame", ScreenGui)
  98.  
  99. Note.Active = true
  100.  
  101. Note.Position = UDim2.new(1, -321, 1, 500)
  102.  
  103. Note.Size = UDim2.new(0, 320,0, 250)
  104.  
  105. Note.Visible = false
  106.  
  107. Note.Draggable = true
  108.  
  109.  
  110.  
  111. open.MouseButton1Down:connect(function()
  112.  
  113. open:TweenPosition(UDim2.new(open.Position.X.Scale,open.Position.X.Offset, 1, 500), "Out", Normal, 0.8, true)
  114.  
  115. wait(0.30)
  116.  
  117. open.Visible = false
  118.  
  119. Note.Visible = true
  120.  
  121. Note.Position = UDim2.new(1, -321, 1, 500)
  122.  
  123. Note:TweenPosition(UDim2.new(1, -321, 1, -251), "In", Normal, 0.5, true)
  124.  
  125. end)
  126.  
  127.  
  128.  
  129. local bg = Instance.new("Frame", Note)
  130.  
  131. bg.BackgroundColor3 = Color3.fromRGB(31, 31, 31)
  132.  
  133. bg.Size = UDim2.new(0, 160,0, 250)
  134.  
  135. bg.ZIndex = 2
  136.  
  137.  
  138.  
  139. -- Background
  140.  
  141.  
  142.  
  143. local close = Instance.new("TextButton", bg)
  144.  
  145. close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  146.  
  147. close.BackgroundTransparency = 1
  148.  
  149. close.Position = UDim2.new(0, 8,0, 10)
  150.  
  151. close.Size = UDim2.new(0, 10,0, 10)
  152.  
  153. close.ZIndex = 4
  154.  
  155. close.Font = "Cartoon"
  156.  
  157. close.Text = "X"
  158.  
  159. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  160.  
  161. close.TextSize = "17"
  162.  
  163.  
  164.  
  165. close.MouseButton1Down:connect(function()
  166.  
  167. Note:TweenPosition(UDim2.new(Note.Position.X.Scale,Note.Position.X.Offset,1, 500), "Out", Normal, 0.5, true)
  168.  
  169. wait(0.30)
  170.  
  171. Note.Visible = false
  172.  
  173. open.Visible = true
  174.  
  175. open:TweenPosition(UDim2.new(1, -110, 1, -150), "In", Normal, 0.8, true)
  176.  
  177. end)
  178.  
  179.  
  180.  
  181. local image1 = Instance.new("ImageLabel", bg)
  182.  
  183. image1.BackgroundTransparency = 1
  184.  
  185. image1.Size = UDim2.new(1, 0,1, 0)
  186.  
  187. image1.ZIndex = 3
  188.  
  189. image1.Image = "rbxassetid://18528551"
  190.  
  191.  
  192.  
  193. local title = Instance.new("TextLabel", bg)
  194.  
  195. title.BackgroundTransparency = 1
  196.  
  197. title.Position = UDim2.new(0, 0,0, 30)
  198.  
  199. title.Size = UDim2.new(1, 0,0, 30)
  200.  
  201. title.ZIndex = 4
  202.  
  203. title.Font = "Bodoni"
  204.  
  205. title.Text = "DEATH NOTE"
  206.  
  207. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  208.  
  209. title.TextSize = "18"
  210.  
  211.  
  212.  
  213. local body = Instance.new("TextLabel", bg)
  214.  
  215. body.BackgroundTransparency = 1
  216.  
  217. body.Position = UDim2.new(0, 15,0, 65)
  218.  
  219. body.Size = UDim2.new(0, 134,0, 40)
  220.  
  221. body.ZIndex = 4
  222.  
  223. body.Font = "Garamond"
  224.  
  225. body.Text = "Type in somebody's name to kill them."
  226.  
  227. body.TextColor3 = Color3.fromRGB(255, 255, 255)
  228.  
  229. body.TextSize = "19"
  230.  
  231. body.TextWrapped = true
  232.  
  233. body.TextXAlignment = "Left"
  234.  
  235. body.TextYAlignment = "Top"
  236.  
  237.  
  238.  
  239. local line = Instance.new("TextLabel", body)
  240.  
  241. line.BackgroundTransparency = 1
  242.  
  243. line.Position = UDim2.new(0, 0,0, 50)
  244.  
  245. line.Size = UDim2.new(0, 130,0, 40)
  246.  
  247. line.ZIndex = 4
  248.  
  249. line.Font = "Garamond"
  250.  
  251. line.Text = "________________"
  252.  
  253. line.TextColor3 = Color3.fromRGB(255, 255, 255)
  254.  
  255. line.TextSize = "19"
  256.  
  257. line.TextWrapped = true
  258.  
  259. line.TextXAlignment = "Left"
  260.  
  261. line.TextYAlignment = "Top"
  262.  
  263.  
  264.  
  265. local text = Instance.new("TextLabel", body)
  266.  
  267. text.BackgroundTransparency = 1
  268.  
  269. text.Position = UDim2.new(0, 0,0, 100)
  270.  
  271. text.Size = UDim2.new(0, 134,0, 40)
  272.  
  273. text.ZIndex = 4
  274.  
  275. text.Font = "Garamond"
  276.  
  277. text.Text = "This was made by RcDZ."
  278.  
  279. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  280.  
  281. text.TextSize = "19"
  282.  
  283. text.TextWrapped = true
  284.  
  285. text.TextXAlignment = "Left"
  286.  
  287. text.TextYAlignment = "Top"
  288.  
  289.  
  290.  
  291. -- Page
  292.  
  293.  
  294.  
  295. local page = Instance.new("Frame", Note)
  296.  
  297. page.BackgroundColor3 = Color3.fromRGB(236, 236, 236)
  298.  
  299. page.Position = UDim2.new(0, 160,0, 0)
  300.  
  301. page.Size = UDim2.new(0, 160,0, 250)
  302.  
  303. page.ZIndex = 2
  304.  
  305.  
  306.  
  307. local list = Instance.new("TextBox", page)
  308.  
  309. list.BackgroundTransparency = 1
  310.  
  311. list.Position = UDim2.new(0, 25,0, 20)
  312.  
  313. list.Size = UDim2.new(0.8, 5,0, 230)
  314.  
  315. list.ZIndex = 4
  316.  
  317. list.Font = "Antique"
  318.  
  319. list.Text = ""
  320.  
  321. list.TextColor3 = Color3.fromRGB(0, 0, 0)
  322.  
  323. list.TextSize = "23"
  324.  
  325. list.TextWrapped = true
  326.  
  327. list.TextXAlignment = "Left"
  328.  
  329. list.TextYAlignment = "Top"
  330.  
  331.  
  332. local image2 = Instance.new("ImageLabel", page)
  333.  
  334. image2.BackgroundTransparency = 1
  335.  
  336. image2.Size = UDim2.new(1, 0,1, 0)
  337.  
  338. image2.ZIndex = 3
  339.  
  340. image2.Image = "rbxassetid://170279713"
  341.  
  342. local dead = true
  343.  
  344. image2.Transparency = 0.2
  345. local plr = game.Players.LocalPlayer
  346. local chr = plr.Character
  347. while dead ~= false do
  348.     wait()
  349.     local target = workspace:FindFirstChild(list.Text)
  350.     if target then
  351.        chr.Reanimate.FPart.Position = target.Head.Position
  352.        else
  353.        --chr.Reanimate.FPart.Position = chr.Reanimate.Head.Position
  354.     end
  355.     end
Add Comment
Please, Sign In to add comment