Advertisement
Guest User

FE BTOOLS AND FE KILL NO TOOLS

a guest
Nov 11th, 2019
671
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.42 KB | None | 0 0
  1. function GetPlayer(String)
  2. local Found = {}
  3. local strl = String:lower()
  4. if strl == "all" then
  5. for i,v in pairs(game.Players:GetPlayers()) do
  6. table.insert(Found,v.Name)
  7. end
  8. elseif strl == "others" then
  9. for i,v in pairs(game.Players:GetPlayers()) do
  10. if v.Name ~= game.Players.LocalPlayer.Name then
  11. table.insert(Found,v.Name)
  12. end
  13. end
  14. elseif strl == "me" then
  15. for i,v in pairs(game.Players:GetPlayers()) do
  16. if v.Name == game.Players.LocalPlayer.Name then
  17. table.insert(Found,v.Name)
  18. end
  19. end
  20. else
  21. for i,v in pairs(game.Players:GetPlayers()) do
  22. if v.Name:lower():sub(1, #String) == String:lower() then
  23. table.insert(Found,v.Name)
  24. end
  25. end
  26. end
  27. return Found
  28. end
  29.  
  30.  
  31. local ScreenGui = Instance.new("ScreenGui")
  32. local desc = Instance.new("TextLabel")
  33. local Frame = Instance.new("Frame")
  34. local TextBox = Instance.new("TextBox")
  35. local killbtn = Instance.new("TextButton")
  36. local ragdollbtn = Instance.new("TextButton")
  37. local nkdbtn = Instance.new("TextButton")
  38. local punishbtn = Instance.new("TextButton")
  39. local kickbtn = Instance.new("TextButton")
  40. local banbtn = Instance.new("TextButton")
  41. local btlsbtn = Instance.new("TextButton")
  42. local minebtn = Instance.new("TextButton")
  43. local gunbtn = Instance.new("TextButton")
  44. local TextLabel = Instance.new("TextLabel")
  45. local nlmbsbtn = Instance.new("TextButton")
  46. --Properties:
  47. ScreenGui.Parent = game.CoreGui
  48. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  49.  
  50. Frame.Parent = ScreenGui
  51. Frame.Active = true
  52. Frame.Draggable = true
  53. Frame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  54. Frame.BackgroundTransparency = 0.30000001192093
  55. Frame.Position = UDim2.new(0.29728958, 0, 0.455135107, 0)
  56. Frame.Size = UDim2.new(0, 285, 0, 317)
  57.  
  58. TextBox.Parent = Frame
  59. TextBox.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  60. TextBox.BackgroundTransparency = 0.69999998807907
  61. TextBox.Position = UDim2.new(0.042105265, 0, 0.817034721, 0)
  62. TextBox.Size = UDim2.new(0, 263, 0, 36)
  63. TextBox.Font = Enum.Font.SourceSansLight
  64. TextBox.Text = ""
  65. TextBox.TextColor3 = Color3.new(1, 1, 1)
  66. TextBox.TextSize = 14
  67.  
  68. killbtn.Name = "killbtn"
  69. killbtn.Parent = Frame
  70. killbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  71. killbtn.BackgroundTransparency = 0.69999998807907
  72. killbtn.Position = UDim2.new(0.529824615, 0, 0.220820203, 0)
  73. killbtn.Size = UDim2.new(0, 124, 0, 34)
  74. killbtn.Font = Enum.Font.SourceSansLight
  75. killbtn.Text = "FE Kill"
  76. killbtn.TextColor3 = Color3.new(1, 1, 1)
  77. killbtn.TextSize = 25
  78.  
  79. ragdollbtn.Name = "ragdollbtn"
  80. ragdollbtn.Parent = Frame
  81. ragdollbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  82. ragdollbtn.BackgroundTransparency = 0.69999998807907
  83. ragdollbtn.Position = UDim2.new(0.042105265, 0, 0.220820203, 0)
  84. ragdollbtn.Size = UDim2.new(0, 124, 0, 34)
  85. ragdollbtn.Font = Enum.Font.SourceSansLight
  86. ragdollbtn.Text = "Ragdoll"
  87. ragdollbtn.TextColor3 = Color3.new(1, 1, 1)
  88. ragdollbtn.TextSize = 25
  89.  
  90. nkdbtn.Name = "nkdbtn"
  91. nkdbtn.Parent = Frame
  92. nkdbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  93. nkdbtn.BackgroundTransparency = 0.69999998807907
  94. nkdbtn.Position = UDim2.new(0.529824615, 0, 0.356466889, 0)
  95. nkdbtn.Size = UDim2.new(0, 124, 0, 34)
  96. nkdbtn.Font = Enum.Font.SourceSansLight
  97. nkdbtn.Text = "Naked"
  98. nkdbtn.TextColor3 = Color3.new(1, 1, 1)
  99. nkdbtn.TextSize = 25
  100.  
  101. kickbtn.Name = "kickbtn"
  102. kickbtn.Parent = Frame
  103. kickbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  104. kickbtn.BackgroundTransparency = 0.69999998807907
  105. kickbtn.Position = UDim2.new(0.529824615, 0, 0.498422742, 0)
  106. kickbtn.Size = UDim2.new(0, 124, 0, 34)
  107. kickbtn.Font = Enum.Font.SourceSansLight
  108. kickbtn.Text = "Kick"
  109. kickbtn.TextColor3 = Color3.new(1, 1, 1)
  110. kickbtn.TextSize = 25
  111.  
  112. banbtn.Name = "banbtn"
  113. banbtn.Parent = Frame
  114. banbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  115. banbtn.BackgroundTransparency = 0.69999998807907
  116. banbtn.Position = UDim2.new(0.529824615, 0, 0.64353317, 0)
  117. banbtn.Size = UDim2.new(0, 124, 0, 34)
  118. banbtn.Font = Enum.Font.SourceSansLight
  119. banbtn.Text = "Ban"
  120. banbtn.TextColor3 = Color3.new(1, 1, 1)
  121. banbtn.TextSize = 25
  122.  
  123. btlsbtn.Name = "btlsbtn"
  124. btlsbtn.Parent = Frame
  125. btlsbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  126. btlsbtn.BackgroundTransparency = 0.69999998807907
  127. btlsbtn.Position = UDim2.new(0.0421053171, 0, 0.64353317, 0)
  128. btlsbtn.Size = UDim2.new(0, 124, 0, 34)
  129. btlsbtn.Font = Enum.Font.SourceSansLight
  130. btlsbtn.Text = "Btools"
  131. btlsbtn.TextColor3 = Color3.new(1, 1, 1)
  132. btlsbtn.TextSize = 25
  133.  
  134. minebtn.Name = "minebtn"
  135. minebtn.Parent = Frame
  136. minebtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  137. minebtn.BackgroundTransparency = 0.69999998807907
  138. minebtn.Position = UDim2.new(0.0421053171, 0, 0.498422742, 0)
  139. minebtn.Size = UDim2.new(0, 124, 0, 34)
  140. minebtn.Font = Enum.Font.SourceSansLight
  141. minebtn.Text = "C4"
  142. minebtn.TextColor3 = Color3.new(1, 1, 1)
  143. minebtn.TextSize = 25
  144.  
  145. gunbtn.Name = "gunbtn"
  146. gunbtn.Parent = Frame
  147. gunbtn.BackgroundColor3 = Color3.new(0.831373, 0.831373, 0.831373)
  148. gunbtn.BackgroundTransparency = 0.69999998807907
  149. gunbtn.Position = UDim2.new(0.0421053171, 0, 0.356466889, 0)
  150. gunbtn.Size = UDim2.new(0, 124, 0, 34)
  151. gunbtn.Font = Enum.Font.SourceSansLight
  152. gunbtn.Text = "FE Gun"
  153. gunbtn.TextColor3 = Color3.new(1, 1, 1)
  154. gunbtn.TextSize = 25
  155.  
  156. TextLabel.Parent = Frame
  157. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  158. TextLabel.BackgroundTransparency = 1
  159. TextLabel.Position = UDim2.new(0.1403, 2, 0.02)
  160. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  161. TextLabel.Font = Enum.Font.SourceSans
  162. TextLabel.Text = "TycoonHax FE"
  163. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  164. TextLabel.TextSize = 36
  165. TextLabel.TextWrapped = true
  166.  
  167. -- Scripts:
  168. function SCRIPT_JDNF69_FAKESCRIPT() -- killbtn.LocalScript
  169. local script = Instance.new('LocalScript')
  170. script.Parent = killbtn
  171. script.Parent.MouseButton1Click:Connect(function()
  172.  
  173. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  174.  
  175. for i,v in pairs(targets)do
  176. spawn(function()
  177.  
  178. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character.Torso.Neck)
  179.  
  180. end)
  181. end
  182.  
  183. end)
  184.  
  185. end
  186. coroutine.resume(coroutine.create(SCRIPT_JDNF69_FAKESCRIPT))
  187. function SCRIPT_KFFS86_FAKESCRIPT() -- ragdollbtn.LocalScript
  188. local script = Instance.new('LocalScript')
  189. script.Parent = ragdollbtn
  190. script.Parent.MouseButton1Click:Connect(function()
  191.  
  192. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  193.  
  194. for i,v in pairs(targets)do
  195. spawn(function()
  196.  
  197. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character.Humanoid)
  198.  
  199. end)
  200. end
  201.  
  202. end)
  203.  
  204. end
  205. coroutine.resume(coroutine.create(SCRIPT_KFFS86_FAKESCRIPT))
  206. function SCRIPT_LCJY70_FAKESCRIPT() -- nkdbtn.LocalScript
  207. local script = Instance.new('LocalScript')
  208. script.Parent = nkdbtn
  209. script.Parent.MouseButton1Click:Connect(function()
  210.  
  211. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  212.  
  213. for i,v in pairs(targets)do
  214. spawn(function()
  215. for i,val in pairs(game.Players[v].Character:GetChildren()) do
  216. if val.ClassName == "Shirt" or val.ClassName == "Pants" or val.ClassName == "ShirtGraphic" then
  217. game.ReplicatedStorage.events.destroyObject:FireServer(val)
  218. end
  219. end
  220. end)
  221. end
  222.  
  223. end)
  224.  
  225. end
  226. coroutine.resume(coroutine.create(SCRIPT_LCJY70_FAKESCRIPT))
  227. function SCRIPT_ZKXC85_FAKESCRIPT() -- punishbtn.LocalScript
  228. local script = Instance.new('LocalScript')
  229. script.Parent = punishbtn
  230. script.Parent.MouseButton1Click:Connect(function()
  231.  
  232. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  233.  
  234. for i,v in pairs(targets)do
  235. spawn(function()
  236.  
  237. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v].Character)
  238.  
  239. end)
  240. end
  241.  
  242. end)
  243.  
  244. end
  245. coroutine.resume(coroutine.create(SCRIPT_ZKXC85_FAKESCRIPT))
  246. function SCRIPT_ADRT82_FAKESCRIPT() -- kickbtn.LocalScript
  247. local script = Instance.new('LocalScript')
  248. script.Parent = kickbtn
  249. script.Parent.MouseButton1Click:Connect(function()
  250.  
  251. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  252.  
  253. for i,v in pairs(targets)do
  254. spawn(function()
  255.  
  256. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v])
  257.  
  258. end)
  259. end
  260.  
  261. end)
  262.  
  263. end
  264. coroutine.resume(coroutine.create(SCRIPT_ADRT82_FAKESCRIPT))
  265. function SCRIPT_VNYD81_FAKESCRIPT() -- banbtn.LocalScript
  266. local script = Instance.new('LocalScript')
  267. script.Parent = banbtn
  268. script.Parent.MouseButton1Click:Connect(function()
  269.  
  270. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  271.  
  272. for i,v in pairs(targets)do
  273. spawn(function()
  274. while wait() do
  275. if game.Players:FindFirstChild(v) then
  276. game.ReplicatedStorage.events.destroyObject:FireServer(game.Players[v])
  277. end
  278. end
  279. end)
  280. end
  281.  
  282. end)
  283.  
  284. end
  285. coroutine.resume(coroutine.create(SCRIPT_VNYD81_FAKESCRIPT))
  286. function SCRIPT_IIVV87_FAKESCRIPT() -- btlsbtn.LocalScript
  287. local script = Instance.new('LocalScript')
  288. script.Parent = btlsbtn
  289. script.Parent.MouseButton1Click:Connect(function()
  290.  
  291. spawn(function()
  292.  
  293. spawn(function()
  294. game.StarterGui:SetCoreGuiEnabled(2, true)
  295. end)
  296.  
  297. local loltool = Instance.new("Tool", game.Players.LocalPlayer.Backpack)
  298.  
  299. loltool.RequiresHandle = false
  300. loltool.Name = "Click Delete"
  301. loltool.ToolTip = "Click Delete"
  302. mouse = game.Players.LocalPlayer:GetMouse()
  303.  
  304. loltool.Activated:Connect(function()
  305. obj = mouse.Target
  306. game.ReplicatedStorage.events.destroyObject:FireServer(obj)
  307. end)
  308.  
  309. end)
  310.  
  311. end)
  312.  
  313. end
  314. coroutine.resume(coroutine.create(SCRIPT_IIVV87_FAKESCRIPT))
  315. function SCRIPT_LORU81_FAKESCRIPT() -- minebtn.LocalScript
  316. local script = Instance.new('LocalScript')
  317. script.Parent = minebtn
  318. script.Parent.MouseButton1Click:Connect(function()
  319.  
  320. spawn(function()
  321.  
  322. game.ReplicatedStorage.Events.CrateClaim:FireServer("Gear",game.ReplicatedStorage.BoxItems["Mine"])
  323.  
  324. end)
  325.  
  326.  
  327. end)
  328.  
  329. end
  330. coroutine.resume(coroutine.create(SCRIPT_LORU81_FAKESCRIPT))
  331. function SCRIPT_FACF69_FAKESCRIPT() -- gunbtn.LocalScript
  332. local script = Instance.new('LocalScript')
  333. script.Parent = gunbtn
  334. script.Parent.MouseButton1Click:Connect(function()
  335.  
  336. spawn(function()
  337.  
  338. game.ReplicatedStorage.Events.CrateClaim:FireServer("Gear",game.ReplicatedStorage.BoxItems["TommyGun"])
  339.  
  340. end)
  341.  
  342. end)
  343.  
  344. end
  345. coroutine.resume(coroutine.create(SCRIPT_FACF69_FAKESCRIPT))
  346. function SCRIPT_WRXV75_FAKESCRIPT() -- nlmbsbtn.LocalScript
  347. local script = Instance.new('LocalScript')
  348. script.Parent = nlmbsbtn
  349. script.Parent.MouseButton1Click:Connect(function()
  350.  
  351. local targets = GetPlayer(script.Parent.Parent.TextBox.Text)
  352.  
  353. for i,v in pairs(targets)do
  354. spawn(function()
  355. for i,val in pairs(game.Players[v].Character:GetChildren()) do
  356. if val.Name == "Right Arm" or val.Name == "Left Arm" or val.Name == "Right Leg" or val.Name == "Left Leg" then
  357. game.ReplicatedStorage.events.destroyObject:FireServer(val)
  358. end
  359. end
  360. end)
  361. end
  362.  
  363. end)
  364.  
  365. end
  366. coroutine.resume(coroutine.create(SCRIPT_WRXV75_FAKESCRIPT))
  367.  
  368.  
  369. spawn(function()
  370.  
  371. local function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  372.  
  373. local counter = 0
  374. wait()
  375.  
  376. spawn(function()
  377.  
  378. while wait() do
  379.  
  380.  
  381. counter = counter + 0.0076
  382.  
  383. end
  384. end)
  385. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement