Advertisement
RN_MODZ_YT

FE KILL roblox RN_MODZ

Feb 24th, 2020
3,238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. ---Check out my YouTube channel RN_MODZ---
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local ui = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local Frame = Instance.new("Frame")
  7. local Username = Instance.new("TextBox")
  8. local Kill = Instance.new("TextButton")
  9. local cred = Instance.new("TextLabel")
  10. --Properties:
  11. ScreenGui.Parent = game:GetService("CoreGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. ui.Name = "ui"
  15. ui.Parent = ScreenGui
  16. ui.Active = true
  17. ui.BackgroundColor3 = Color3.new(1, 1, 1)
  18. ui.BackgroundTransparency = 0.20000000298023
  19. ui.BorderSizePixel = 3
  20. ui.Position = UDim2.new(0.254972845, 0, 0.419703096, 0)
  21. ui.Size = UDim2.new(0, 535, 0, 283)
  22.  
  23. title.Name = "title"
  24. title.Parent = ui
  25. title.BackgroundColor3 = Color3.new(1, 1, 1)
  26. title.BackgroundTransparency = 1
  27. title.BorderSizePixel = 2
  28. title.Position = UDim2.new(0, 0, 0.0199999996, 0)
  29. title.Size = UDim2.new(1, 0, 0, 50)
  30. title.Font = Enum.Font.SourceSans
  31. title.Text = "FE KILL"
  32. title.TextColor3 = Color3.new(0, 0, 0)
  33. title.TextScaled = true
  34. title.TextSize = 14
  35. title.TextWrapped = true
  36.  
  37. Frame.Parent = title
  38. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  39. Frame.BorderSizePixel = 0
  40. Frame.Position = UDim2.new(0.25, 0, 0.860000014, 0)
  41. Frame.Size = UDim2.new(0.5, 0, 0, 3)
  42.  
  43. Username.Name = "Username"
  44. Username.Parent = ui
  45. Username.BackgroundColor3 = Color3.new(1, 1, 1)
  46. Username.BorderSizePixel = 0
  47. Username.Position = UDim2.new(0.100000001, 0, 0.300000012, 0)
  48. Username.Size = UDim2.new(0.800000012, 0, 0, 50)
  49. Username.Font = Enum.Font.SourceSans
  50. Username.PlaceholderText = "Name"
  51. Username.Text = ""
  52. Username.TextColor3 = Color3.new(0, 0, 0)
  53. Username.TextScaled = true
  54. Username.TextSize = 14
  55. Username.TextWrapped = true
  56.  
  57. Kill.Name = "Kill"
  58. Kill.Parent = ui
  59. Kill.BackgroundColor3 = Color3.new(1, 1, 1)
  60. Kill.BackgroundTransparency = 0.20000000298023
  61. Kill.BorderSizePixel = 2
  62. Kill.Position = UDim2.new(0.25, 0, 0.529999971, 0)
  63. Kill.Size = UDim2.new(0.5, 0, 0, 50)
  64. Kill.Font = Enum.Font.Gotham
  65. Kill.Text = "KILL"
  66. Kill.TextColor3 = Color3.new(0, 0, 0)
  67. Kill.TextScaled = true
  68. Kill.TextSize = 14
  69. Kill.TextWrapped = true
  70.  
  71. cred.Name = "cred"
  72. cred.Parent = ui
  73. cred.BackgroundColor3 = Color3.new(1, 1, 1)
  74. cred.BackgroundTransparency = 1
  75. cred.BorderSizePixel = 2
  76. cred.Position = UDim2.new(0.0500000007, 0, 0.769999981, 0)
  77. cred.Size = UDim2.new(0.899999976, 0, 0, 50)
  78. cred.Font = Enum.Font.SourceSans
  79. cred.Text = "Credits to Cyclically, Thunder Mods"
  80. cred.TextColor3 = Color3.new(0, 0, 0)
  81. cred.TextScaled = true
  82. cred.TextSize = 14
  83. cred.TextWrapped = true
  84. ui.Draggable = true
  85.  
  86. -- creds to Hamiii for the plr finder
  87. local Players = game:GetService("Players")
  88. local LocalPlayer = Players.LocalPlayer
  89. local function RemoveSpaces(String)
  90. return String:gsub("%s+", "") or String
  91. end
  92.  
  93. local function FindPlayer(String)
  94. String = RemoveSpaces(String)
  95. for _, _Player in pairs(Players:GetPlayers()) do
  96. if _Player.Name:lower():match('^'.. String:lower()) then
  97. return _Player
  98. end
  99. end
  100. return nil
  101. end
  102.  
  103. Kill.MouseButton1Click:Connect(function()
  104. local Target = FindPlayer(Username.Text)
  105. if Target and Target.Character then
  106. local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
  107. local Torso = Character:FindFirstChild("Torso") or Character:FindFirstChild("UpperTorso")
  108.  
  109. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  110. Torso.Anchored = true
  111. local tool = Instance.new("Tool", LocalPlayer.Backpack)
  112. local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  113. local hathandle = hat.Handle
  114. hathandle.Parent = tool
  115. hathandle.Massless = true
  116. tool.GripPos = Vector3.new(0, 9e99, 0)
  117. tool.Parent = LocalPlayer.Character
  118. repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  119. tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  120. Torso.Anchored = false
  121. repeat LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = Target.Character:FindFirstChild("HumanoidRootPart").CFrame wait()
  122. 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)
  123. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  124. hathandle.Parent = hat
  125. hathandle.Massless = false
  126. tool:Destroy()
  127. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  128. else
  129. warn'no player found named like that or he has no char'
  130. end
  131. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement