Advertisement
Guest User

v

a guest
Oct 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.37 KB | None | 0 0
  1.  
  2. local TargetFEKill = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local TextLabel_2 = Instance.new("TextLabel")
  6. local Kill = Instance.new("TextButton")
  7. local Target = Instance.new("TextBox")
  8. local God = Instance.new("TextButton")
  9. local Exit = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. TargetFEKill.Name = "TargetFEKill"
  14. TargetFEKill.Parent = game.Players.LocalPlayer.PlayerGui
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = TargetFEKill
  18. Main.BackgroundColor3 = Color3.new(0.92549, 0.941177, 0.945098)
  19. Main.BorderSizePixel = 0
  20. Main.Position = UDim2.new(0.553832114, 0, 0.375494063, 0)
  21. Main.Size = UDim2.new(0, 252, 0, 255)
  22. Main.Selectable = true
  23. Main.Draggable = true
  24. Main.Active = true
  25.  
  26. TextLabel.Parent = Main
  27. TextLabel.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  28. TextLabel.BorderSizePixel = 0
  29. TextLabel.Size = UDim2.new(0, 252, 0, 36)
  30. TextLabel.Font = Enum.Font.Cartoon
  31. TextLabel.Text = " Target FE Kill By JackMcJagger15"
  32. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  33. TextLabel.TextSize = 14
  34. TextLabel.TextXAlignment = Enum.TextXAlignment.Left
  35.  
  36. TextLabel_2.Parent = Main
  37. TextLabel_2.BackgroundColor3 = Color3.new(0.584314, 0.647059, 0.65098)
  38. TextLabel_2.BorderSizePixel = 0
  39. TextLabel_2.Position = UDim2.new(0, 0, 0.141176477, 0)
  40. TextLabel_2.Size = UDim2.new(0, 252, 0, 10)
  41. TextLabel_2.Font = Enum.Font.Cartoon
  42. TextLabel_2.Text = ""
  43. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  44. TextLabel_2.TextSize = 14
  45. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  46.  
  47. Kill.Name = "Kill"
  48. Kill.Parent = Main
  49. Kill.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  50. Kill.BorderSizePixel = 0
  51. Kill.Position = UDim2.new(0.204365075, 0, 0.258823514, 0)
  52. Kill.Size = UDim2.new(0, 149, 0, 33)
  53. Kill.Font = Enum.Font.Cartoon
  54. Kill.Text = "Kill"
  55. Kill.TextColor3 = Color3.new(0, 0, 0)
  56. Kill.TextSize = 14
  57.  
  58. Target.Name = "Target"
  59. Target.Parent = Main
  60. Target.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  61. Target.BorderSizePixel = 0
  62. Target.Position = UDim2.new(0.162698418, 0, 0.694117665, 0)
  63. Target.Size = UDim2.new(0, 170, 0, 47)
  64. Target.Font = Enum.Font.Cartoon
  65. Target.Text = "Target"
  66. Target.TextColor3 = Color3.new(0, 0, 0)
  67. Target.TextSize = 14
  68.  
  69. God.Name = "God"
  70. God.Parent = Main
  71. God.BackgroundColor3 = Color3.new(0.741176, 0.764706, 0.780392)
  72. God.BorderSizePixel = 0
  73. God.Position = UDim2.new(0.204365075, 0, 0.46274507, 0)
  74. God.Size = UDim2.new(0, 149, 0, 33)
  75. God.Font = Enum.Font.Cartoon
  76. God.Text = "FE God"
  77. God.TextColor3 = Color3.new(0, 0, 0)
  78. God.TextSize = 14
  79.  
  80. Exit.Name = "Exit"
  81. Exit.Parent = Main
  82. Exit.BackgroundColor3 = Color3.new(1, 1, 1)
  83. Exit.BackgroundTransparency = 1
  84. Exit.Position = UDim2.new(0.837301612, 0, 0, 0)
  85. Exit.Size = UDim2.new(0, 41, 0, 36)
  86. Exit.Font = Enum.Font.Cartoon
  87. Exit.Text = "X"
  88. Exit.TextColor3 = Color3.new(0, 0, 0)
  89. Exit.TextSize = 14
  90.  
  91. function GetPlayer(String)
  92. local Found = {}
  93. local strl = String:lower()
  94. if strl == "all" then
  95. for i,v in pairs(game.Players:GetPlayers()) do
  96. table.insert(Found,v)
  97. end
  98. elseif strl == "others" then
  99. for i,v in pairs(game.Players:GetPlayers()) do
  100. if v.Name ~= game.Players.LocalPlayer.Name then
  101. table.insert(Found,v)
  102. end
  103. end
  104. else
  105. for i,v in pairs(game.Players:GetPlayers()) do
  106. if v.Name:lower():sub(1, #String) == String:lower() then
  107. table.insert(Found,v)
  108. end
  109. end
  110. end
  111. return Found
  112. end
  113.  
  114. Kill.MouseButton1Click:connect(function()
  115. if game.Players:FindFirstChild(Target.Text) then
  116. workspace[Target.Text]:BreakJoints
  117. end
  118. end)
  119.  
  120. Exit.MouseButton1Click:connect(function()
  121. TargetFEKill:Destroy()
  122. end)
  123.  
  124. local plr = game:GetService("Players").LocalPlayer
  125. local human = plr.Character:FindFirstChildOfClass("Humanoid")
  126. local humclone
  127. local fold = Instance.new("Folder",game)
  128. local godded = false
  129. fold.Name = "fegodguistorage"
  130.  
  131. plr.CharacterAdded:Connect(function()
  132. print("New character detected.")
  133. wait()
  134. human = plr.Character:FindFirstChildOfClass("Humanoid")
  135. for _,v in next, fold:GetChildren() do
  136. v:Destroy()
  137. end
  138. godded = false
  139. end)
  140.  
  141. God.MouseButton1Click:connect(function()
  142. if godded == false then
  143. godded = true
  144. God.BackgroundColor3 = Color3.fromRGB(212, 0, 0)
  145. humclone = Instance.new("Humanoid")
  146. human.Parent = fold
  147. humclone.Parent = plr.Character
  148. else
  149. if godded == true then
  150. godded = false
  151. God.BackgroundColor3 = Color3.fromRGB(189, 195, 199)
  152. humclone:Destroy()
  153. human.Parent = plr.Character
  154. end
  155. end
  156. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement