Advertisement
urtourwturoetou

FE KICK SCRIPT

Jul 2nd, 2023
28,457
6
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 38.69 KB | None | 7 1
  1. -- game: https://www.roblox.com/games/3964975083/Build-to-survive
  2. -- IMPORTANT! make sure the game is by Feather Fall Productions Or It will Not Work.
  3.  
  4. local ToggleGuis = true
  5.  
  6. local BuildToSurviveGUI = Instance.new("ScreenGui")
  7. local Toggle = Instance.new("TextButton")
  8. local Menu = Instance.new("Frame")
  9. local GameX = Instance.new("TextButton")
  10. local Players = Instance.new("TextButton")
  11. local Tools = Instance.new("TextButton")
  12. local Fun = Instance.new("TextButton")
  13. local PlayersFrame = Instance.new("Frame")
  14. local Kill = Instance.new("TextButton")
  15. local Kick = Instance.new("TextButton")
  16. local Punish = Instance.new("TextButton")
  17. local Ragdoll = Instance.new("TextButton")
  18. local TeleportTo = Instance.new("TextButton")
  19. local Victim = Instance.new("TextBox")
  20. local GameFrame = Instance.new("Frame")
  21. local ClearBases = Instance.new("TextButton")
  22. local ClearWorkspace = Instance.new("TextButton")
  23. local RemoveMobs = Instance.new("TextButton")
  24. local RemoveCages = Instance.new("TextButton")
  25. local PermRemoveMobs = Instance.new("TextButton")
  26. local Shutdown = Instance.new("TextButton")
  27. local ToolsFrame = Instance.new("Frame")
  28. local AllBtools = Instance.new("TextButton")
  29. local Move = Instance.new("TextButton")
  30. local Copy = Instance.new("TextButton")
  31. local Delete = Instance.new("TextButton")
  32. local Shutdown_2 = Instance.new("Frame")
  33. local Question = Instance.new("TextLabel")
  34. local Normal = Instance.new("TextButton")
  35. local Full = Instance.new("TextButton")
  36. local Close = Instance.new("TextButton")
  37. local FunFrame = Instance.new("Frame")
  38. local CreateDeadClone = Instance.new("TextButton")
  39. local SpamHeadClones = Instance.new("TextButton")
  40. local SpamLimbClones = Instance.new("TextButton")
  41.  
  42. BuildToSurviveGUI.Name = "Build To Survive GUI"
  43. BuildToSurviveGUI.Parent = game.CoreGui
  44. BuildToSurviveGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  45.  
  46. Toggle.Name = "Toggle"
  47. Toggle.Parent = BuildToSurviveGUI
  48. Toggle.BackgroundColor3 = Color3.new(0, 0, 0)
  49. Toggle.BorderColor3 = Color3.new(0, 0, 0)
  50. Toggle.BorderSizePixel = 0
  51. Toggle.Position = UDim2.new(0, 0, 0.634069383, 0)
  52. Toggle.Size = UDim2.new(0, 126, 0, 24)
  53. Toggle.Font = Enum.Font.Garamond
  54. Toggle.Text = "Build To Survive GUI"
  55. Toggle.TextColor3 = Color3.new(0, 1, 1)
  56. Toggle.TextScaled = true
  57. Toggle.TextSize = 14
  58. Toggle.TextWrapped = true
  59.  
  60. Menu.Name = "Menu"
  61. Menu.Parent = Toggle
  62. Menu.Active = true
  63. Menu.BackgroundColor3 = Color3.new(0, 0, 0)
  64. Menu.BackgroundTransparency = 0.5
  65. Menu.BorderColor3 = Color3.new(0, 1, 1)
  66. Menu.BorderSizePixel = 2
  67. Menu.Draggable = true
  68. Menu.Position =
  69.     UDim2.new(
  70.     0,
  71.     game.Players.LocalPlayer:GetMouse().ViewSizeX / 2.5,
  72.     0,
  73.     -game.Players.LocalPlayer:GetMouse().ViewSizeY / 2
  74. )
  75. Menu.Size = UDim2.new(0, 500, 0, 28)
  76. Menu.Visible = true
  77.  
  78. GameX.Name = "Game"
  79. GameX.Parent = Menu
  80. GameX.BackgroundColor3 = Color3.new(0, 0, 0)
  81. GameX.BorderColor3 = Color3.new(0, 0, 0)
  82. GameX.BorderSizePixel = 0
  83. GameX.Size = UDim2.new(0, 100, 0, 28)
  84. GameX.Font = Enum.Font.Garamond
  85. GameX.Text = "Game | +"
  86. GameX.TextColor3 = Color3.new(0, 1, 1)
  87. GameX.TextScaled = true
  88. GameX.TextSize = 14
  89. GameX.TextWrapped = true
  90.  
  91. Players.Name = "Players"
  92. Players.Parent = Menu
  93. Players.BackgroundColor3 = Color3.new(0, 0, 0)
  94. Players.BorderColor3 = Color3.new(0, 0, 0)
  95. Players.BorderSizePixel = 0
  96. Players.Position = UDim2.new(0.26699999, 0, 0, 0)
  97. Players.Size = UDim2.new(0, 100, 0, 28)
  98. Players.Font = Enum.Font.Garamond
  99. Players.Text = "Players | +"
  100. Players.TextColor3 = Color3.new(0, 1, 1)
  101. Players.TextScaled = true
  102. Players.TextSize = 14
  103. Players.TextWrapped = true
  104.  
  105. Tools.Name = "Tools"
  106. Tools.Parent = Menu
  107. Tools.BackgroundColor3 = Color3.new(0, 0, 0)
  108. Tools.BorderColor3 = Color3.new(0, 0, 0)
  109. Tools.BorderSizePixel = 0
  110. Tools.Position = UDim2.new(0.532999992, 0, 0, 0)
  111. Tools.Size = UDim2.new(0, 100, 0, 28)
  112. Tools.Font = Enum.Font.Garamond
  113. Tools.Text = "Tools | +"
  114. Tools.TextColor3 = Color3.new(0, 1, 1)
  115. Tools.TextScaled = true
  116. Tools.TextSize = 14
  117. Tools.TextWrapped = true
  118.  
  119. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  120.     Fun.Name = "Fun"
  121.     Fun.Parent = Menu
  122.     Fun.BackgroundColor3 = Color3.new(0, 0, 0)
  123.     Fun.BorderColor3 = Color3.new(0, 0, 0)
  124.     Fun.BorderSizePixel = 0
  125.     Fun.Position = UDim2.new(0.800000012, 0, 0, 0)
  126.     Fun.Size = UDim2.new(0, 100, 0, 28)
  127.     Fun.Font = Enum.Font.Garamond
  128.     Fun.Text = "Fun | +"
  129.     Fun.TextColor3 = Color3.new(0, 1, 1)
  130.     Fun.TextScaled = true
  131.     Fun.TextSize = 14
  132.     Fun.TextWrapped = true
  133. end
  134.  
  135. PlayersFrame.Name = "PlayersFrame"
  136. PlayersFrame.Parent = Menu
  137. PlayersFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  138. PlayersFrame.BorderColor3 = Color3.new(0, 1, 1)
  139. PlayersFrame.BorderSizePixel = 0
  140. PlayersFrame.Position = UDim2.new(0.267246945, 0, 0.995716333, 0)
  141. PlayersFrame.Size = UDim2.new(0, 100, 0, 223)
  142. PlayersFrame.Visible = false
  143.  
  144. Kill.Name = "Kill"
  145. Kill.Parent = PlayersFrame
  146. Kill.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  147. Kill.BorderColor3 = Color3.new(0, 0, 0)
  148. Kill.BorderSizePixel = 0
  149. Kill.Size = UDim2.new(0, 100, 0, 25)
  150. Kill.Font = Enum.Font.Garamond
  151. Kill.Text = "Kill"
  152. Kill.TextColor3 = Color3.new(0, 0, 0)
  153. Kill.TextScaled = true
  154. Kill.TextSize = 14
  155. Kill.TextWrapped = true
  156.  
  157. Kick.Name = "Kick"
  158. Kick.Parent = PlayersFrame
  159. Kick.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  160. Kick.BorderColor3 = Color3.new(0, 0, 0)
  161. Kick.BorderSizePixel = 0
  162. Kick.Position = UDim2.new(0, 0, 0.174887896, 0)
  163. Kick.Size = UDim2.new(0, 100, 0, 25)
  164. Kick.Font = Enum.Font.Garamond
  165. Kick.Text = "Kick"
  166. Kick.TextColor3 = Color3.new(0, 0, 0)
  167. Kick.TextScaled = true
  168. Kick.TextSize = 14
  169. Kick.TextWrapped = true
  170.  
  171. Punish.Name = "Punish"
  172. Punish.Parent = PlayersFrame
  173. Punish.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  174. Punish.BorderColor3 = Color3.new(0, 0, 0)
  175. Punish.BorderSizePixel = 0
  176. Punish.Position = UDim2.new(0, 0, 0.356031367, 0)
  177. Punish.Size = UDim2.new(0, 100, 0, 25)
  178. Punish.Font = Enum.Font.Garamond
  179. Punish.Text = "Punish"
  180. Punish.TextColor3 = Color3.new(0, 0, 0)
  181. Punish.TextScaled = true
  182. Punish.TextSize = 14
  183. Punish.TextWrapped = true
  184.  
  185. Ragdoll.Name = "Ragdoll"
  186. Ragdoll.Parent = PlayersFrame
  187. Ragdoll.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  188. Ragdoll.BorderColor3 = Color3.new(0, 0, 0)
  189. Ragdoll.BorderSizePixel = 0
  190. Ragdoll.Position = UDim2.new(0, 0, 0.533632338, 0)
  191. Ragdoll.Size = UDim2.new(0, 100, 0, 25)
  192. Ragdoll.Font = Enum.Font.Garamond
  193. Ragdoll.Text = "Ragdoll"
  194. Ragdoll.TextColor3 = Color3.new(0, 0, 0)
  195. Ragdoll.TextScaled = true
  196. Ragdoll.TextSize = 14
  197. Ragdoll.TextWrapped = true
  198.  
  199. TeleportTo.Name = "Teleport To"
  200. TeleportTo.Parent = PlayersFrame
  201. TeleportTo.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  202. TeleportTo.BorderColor3 = Color3.new(0, 0, 0)
  203. TeleportTo.BorderSizePixel = 0
  204. TeleportTo.Position = UDim2.new(0, 0, 0.713004529, 0)
  205. TeleportTo.Size = UDim2.new(0, 100, 0, 25)
  206. TeleportTo.Font = Enum.Font.Garamond
  207. TeleportTo.Text = "Teleport To"
  208. TeleportTo.TextColor3 = Color3.new(0, 0, 0)
  209. TeleportTo.TextScaled = true
  210. TeleportTo.TextSize = 14
  211. TeleportTo.TextWrapped = true
  212.  
  213. Victim.Parent = PlayersFrame
  214. Victim.BackgroundColor3 = Color3.new(0, 0.196078, 0.196078)
  215. Victim.BorderColor3 = Color3.new(0, 0, 0)
  216. Victim.BorderSizePixel = 0
  217. Victim.ClearTextOnFocus = false
  218. Victim.PlaceholderText = "Victim"
  219. Victim.PlaceholderColor3 = Color3.new(0, .8, .8)
  220. Victim.Position = UDim2.new(0, 0, 0.887892365, 0)
  221. Victim.Size = UDim2.new(0, 100, 0, 25)
  222. Victim.Font = Enum.Font.Garamond
  223. Victim.Name = "Victim"
  224. Victim.Text = ""
  225. Victim.TextColor3 = Color3.new(0, 1, 1)
  226. Victim.TextScaled = true
  227. Victim.TextSize = 14
  228. Victim.TextStrokeTransparency = 0
  229. Victim.TextWrapped = true
  230.  
  231. GameFrame.Name = "GameFrame"
  232. GameFrame.Parent = Menu
  233. GameFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  234. GameFrame.BorderColor3 = Color3.new(0, 1, 1)
  235. GameFrame.BorderSizePixel = 0
  236. GameFrame.Position = UDim2.new(0, 0, 1, 0)
  237. GameFrame.Size = UDim2.new(0, 100, 0, 223)
  238. GameFrame.Visible = false
  239.  
  240. ClearBases.Name = "Clear Bases"
  241. ClearBases.Parent = GameFrame
  242. ClearBases.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  243. ClearBases.BorderColor3 = Color3.new(0, 0, 0)
  244. ClearBases.BorderSizePixel = 0
  245. ClearBases.Size = UDim2.new(0, 100, 0, 25)
  246. ClearBases.Font = Enum.Font.Garamond
  247. ClearBases.Text = "Clear Bases"
  248. ClearBases.TextColor3 = Color3.new(0, 0, 0)
  249. ClearBases.TextScaled = true
  250. ClearBases.TextSize = 14
  251. ClearBases.TextWrapped = true
  252.  
  253. ClearWorkspace.Name = "Clear Workspace"
  254. ClearWorkspace.Parent = GameFrame
  255. ClearWorkspace.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  256. ClearWorkspace.BorderColor3 = Color3.new(0, 0, 0)
  257. ClearWorkspace.BorderSizePixel = 0
  258. ClearWorkspace.Position = UDim2.new(0, 0, 0.174887896, 0)
  259. ClearWorkspace.Size = UDim2.new(0, 100, 0, 25)
  260. ClearWorkspace.Font = Enum.Font.Garamond
  261. ClearWorkspace.Text = "Clear Workspace"
  262. ClearWorkspace.TextColor3 = Color3.new(0, 0, 0)
  263. ClearWorkspace.TextScaled = true
  264. ClearWorkspace.TextSize = 14
  265. ClearWorkspace.TextWrapped = true
  266.  
  267. RemoveMobs.Name = "Remove Mobs"
  268. RemoveMobs.Parent = GameFrame
  269. RemoveMobs.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  270. RemoveMobs.BorderColor3 = Color3.new(0, 0, 0)
  271. RemoveMobs.BorderSizePixel = 0
  272. RemoveMobs.Position = UDim2.new(0, 0, 0.353031367, 0)
  273. RemoveMobs.Size = UDim2.new(0, 100, 0, 25)
  274. RemoveMobs.Font = Enum.Font.Garamond
  275. RemoveMobs.Text = "Remove Mobs"
  276. RemoveMobs.TextColor3 = Color3.new(0, 0, 0)
  277. RemoveMobs.TextScaled = true
  278. RemoveMobs.TextSize = 14
  279. RemoveMobs.TextWrapped = true
  280.  
  281. RemoveCages.Name = "Remove Cages"
  282. RemoveCages.Parent = GameFrame
  283. RemoveCages.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  284. RemoveCages.BorderColor3 = Color3.new(0, 0, 0)
  285. RemoveCages.BorderSizePixel = 0
  286. RemoveCages.Position = UDim2.new(0, 0, 0.533632338, 0)
  287. RemoveCages.Size = UDim2.new(0, 100, 0, 25)
  288. RemoveCages.Font = Enum.Font.Garamond
  289. RemoveCages.Text = "Remove Cages"
  290. RemoveCages.TextColor3 = Color3.new(0, 0, 0)
  291. RemoveCages.TextScaled = true
  292. RemoveCages.TextSize = 14
  293. RemoveCages.TextWrapped = true
  294.  
  295. PermRemoveMobs.Name = "Perm Remove Mobs"
  296. PermRemoveMobs.Parent = GameFrame
  297. PermRemoveMobs.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  298. PermRemoveMobs.BorderColor3 = Color3.new(0, 0, 0)
  299. PermRemoveMobs.BorderSizePixel = 0
  300. PermRemoveMobs.Position = UDim2.new(0, 0, 0.713004529, 0)
  301. PermRemoveMobs.Size = UDim2.new(0, 100, 0, 25)
  302. PermRemoveMobs.Font = Enum.Font.Garamond
  303. PermRemoveMobs.Text = "Perm Remove Mobs"
  304. PermRemoveMobs.TextColor3 = Color3.new(0, 0, 0)
  305. PermRemoveMobs.TextScaled = true
  306. PermRemoveMobs.TextSize = 14
  307. PermRemoveMobs.TextWrapped = true
  308.  
  309. Shutdown.Name = "Shutdown"
  310. Shutdown.Parent = GameFrame
  311. Shutdown.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  312. Shutdown.BorderColor3 = Color3.new(0, 0, 0)
  313. Shutdown.BorderSizePixel = 0
  314. Shutdown.Position = UDim2.new(0, 0, 0.887892365, 0)
  315. Shutdown.Size = UDim2.new(0, 100, 0, 25)
  316. Shutdown.Font = Enum.Font.Garamond
  317. Shutdown.Text = "Shutdown"
  318. Shutdown.TextColor3 = Color3.new(0, 0, 0)
  319. Shutdown.TextScaled = true
  320. Shutdown.TextSize = 14
  321. Shutdown.TextWrapped = true
  322.  
  323. ToolsFrame.Name = "ToolsFrame"
  324. ToolsFrame.Parent = Menu
  325. ToolsFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  326. ToolsFrame.BorderColor3 = Color3.new(0, 1, 1)
  327. ToolsFrame.BorderSizePixel = 0
  328. ToolsFrame.Position = UDim2.new(0.533540155, 0, 0.995716333, 0)
  329. ToolsFrame.Size = UDim2.new(0, 100, 0, 144)
  330. ToolsFrame.Visible = false
  331.  
  332. AllBtools.Name = "All Btools"
  333. AllBtools.Parent = ToolsFrame
  334. AllBtools.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  335. AllBtools.BorderColor3 = Color3.new(0, 0, 0)
  336. AllBtools.BorderSizePixel = 0
  337. AllBtools.Size = UDim2.new(0, 100, 0, 25)
  338. AllBtools.Font = Enum.Font.Garamond
  339. AllBtools.Text = "All Btools"
  340. AllBtools.TextColor3 = Color3.new(0, 0, 0)
  341. AllBtools.TextScaled = true
  342. AllBtools.TextSize = 14
  343. AllBtools.TextWrapped = true
  344.  
  345. Move.Name = "Move"
  346. Move.Parent = ToolsFrame
  347. Move.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  348. Move.BorderColor3 = Color3.new(0, 0, 0)
  349. Move.BorderSizePixel = 0
  350. Move.Position = UDim2.new(0, 0, 0.270165687, 0)
  351. Move.Size = UDim2.new(0, 100, 0, 25)
  352. Move.Font = Enum.Font.Garamond
  353. Move.Text = "Move"
  354. Move.TextColor3 = Color3.new(0, 0, 0)
  355. Move.TextScaled = true
  356. Move.TextSize = 14
  357. Move.TextWrapped = true
  358.  
  359. Copy.Name = "Copy"
  360. Copy.Parent = ToolsFrame
  361. Copy.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  362. Copy.BorderColor3 = Color3.new(0, 0, 0)
  363. Copy.BorderSizePixel = 0
  364. Copy.Position = UDim2.new(0, 0, 0.547999983, 0)
  365. Copy.Size = UDim2.new(0, 100, 0, 25)
  366. Copy.Font = Enum.Font.Garamond
  367. Copy.Text = "Copy"
  368. Copy.TextColor3 = Color3.new(0, 0, 0)
  369. Copy.TextScaled = true
  370. Copy.TextSize = 14
  371. Copy.TextWrapped = true
  372.  
  373. Delete.Name = "Delete"
  374. Delete.Parent = ToolsFrame
  375. Delete.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  376. Delete.BorderColor3 = Color3.new(0, 0, 0)
  377. Delete.BorderSizePixel = 0
  378. Delete.Position = UDim2.new(0, 0, 0.827000022, 0)
  379. Delete.Size = UDim2.new(0, 100, 0, 25)
  380. Delete.Font = Enum.Font.Garamond
  381. Delete.Text = "Delete"
  382. Delete.TextColor3 = Color3.new(0, 0, 0)
  383. Delete.TextScaled = true
  384. Delete.TextSize = 14
  385. Delete.TextWrapped = true
  386.  
  387. Shutdown_2.Name = "Shutdown"
  388. Shutdown_2.Parent = Menu
  389. Shutdown_2.BackgroundColor3 = Color3.new(0, 0.501961, 0.501961)
  390. Shutdown_2.BorderColor3 = Color3.new(0, 0, 0)
  391. Shutdown_2.BorderSizePixel = 0
  392. Shutdown_2.Position = UDim2.new(0.617149055, 0, 10.504281, 0)
  393. Shutdown_2.Size = UDim2.new(0, 282, 0, 145)
  394. Shutdown_2.Visible = false
  395.  
  396. Question.Name = "Question"
  397. Question.Parent = Shutdown_2
  398. Question.BackgroundColor3 = Color3.new(0, 0, 0)
  399. Question.BorderColor3 = Color3.new(0, 0, 0)
  400. Question.BorderSizePixel = 3
  401. Question.Size = UDim2.new(0, 282, 0, 52)
  402. Question.Font = Enum.Font.Gotham
  403. Question.Text = "Would you like to run a normal shutdown or a full shutdown?"
  404. Question.TextColor3 = Color3.new(0, 1, 1)
  405. Question.TextScaled = true
  406. Question.TextSize = 14
  407. Question.TextWrapped = true
  408.  
  409. Normal.Name = "Normal"
  410. Normal.Parent = Shutdown_2
  411. Normal.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  412. Normal.BorderColor3 = Color3.new(0, 0, 0)
  413. Normal.BorderSizePixel = 0
  414. Normal.Position = UDim2.new(0.0212765932, 0, 0.627586186, 0)
  415. Normal.Size = UDim2.new(0, 100, 0, 25)
  416. Normal.Font = Enum.Font.Garamond
  417. Normal.Text = "Normal"
  418. Normal.TextColor3 = Color3.new(0, 0, 0)
  419. Normal.TextScaled = true
  420. Normal.TextSize = 14
  421. Normal.TextWrapped = true
  422.  
  423. Full.Name = "Full"
  424. Full.Parent = Shutdown_2
  425. Full.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  426. Full.BorderColor3 = Color3.new(0, 0, 0)
  427. Full.BorderSizePixel = 0
  428. Full.Position = UDim2.new(0.6241135, 0, 0.627586186, 0)
  429. Full.Size = UDim2.new(0, 100, 0, 25)
  430. Full.Font = Enum.Font.Garamond
  431. Full.Text = "Full"
  432. Full.TextColor3 = Color3.new(0, 0, 0)
  433. Full.TextScaled = true
  434. Full.TextSize = 14
  435. Full.TextWrapped = true
  436.  
  437. Close.Name = "Close"
  438. Close.Parent = Shutdown_2
  439. Close.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  440. Close.BorderColor3 = Color3.new(0, 0, 0)
  441. Close.BorderSizePixel = 0
  442. Close.Position = UDim2.new(0.453900754, 0, 0.827586234, 0)
  443. Close.Size = UDim2.new(0, 25, 0, 25)
  444. Close.Font = Enum.Font.Garamond
  445. Close.Text = "✕"
  446. Close.TextColor3 = Color3.new(0, 0, 0)
  447. Close.TextSize = 25
  448. Close.TextWrapped = true
  449.  
  450. FunFrame.Name = "FunFrame"
  451. FunFrame.Parent = Menu
  452. FunFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  453. FunFrame.BorderColor3 = Color3.new(0, 1, 1)
  454. FunFrame.BorderSizePixel = 0
  455. FunFrame.Position = UDim2.new(0.799820483, 0, 0.995716274, 0)
  456. FunFrame.Size = UDim2.new(0, 100, 0, 103)
  457. FunFrame.Visible = false
  458.  
  459. CreateDeadClone.Name = "Create Dead Clone"
  460. CreateDeadClone.Parent = FunFrame
  461. CreateDeadClone.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  462. CreateDeadClone.BorderColor3 = Color3.new(0, 0, 0)
  463. CreateDeadClone.BorderSizePixel = 0
  464. CreateDeadClone.Size = UDim2.new(0, 100, 0, 25)
  465. CreateDeadClone.Font = Enum.Font.Garamond
  466. CreateDeadClone.Text = "Create Dead Clone"
  467. CreateDeadClone.TextColor3 = Color3.new(0, 0, 0)
  468. CreateDeadClone.TextScaled = true
  469. CreateDeadClone.TextSize = 14
  470. CreateDeadClone.TextWrapped = true
  471.  
  472. SpamHeadClones.Name = "Spam Head Clones"
  473. SpamHeadClones.Parent = FunFrame
  474. SpamHeadClones.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  475. SpamHeadClones.BorderColor3 = Color3.new(0, 0, 0)
  476. SpamHeadClones.BorderSizePixel = 0
  477. SpamHeadClones.Position = UDim2.new(0, 0, 0.377999988, 0)
  478. SpamHeadClones.Size = UDim2.new(0, 100, 0, 25)
  479. SpamHeadClones.Font = Enum.Font.Garamond
  480. SpamHeadClones.Text = "Spam Head Clones"
  481. SpamHeadClones.TextColor3 = Color3.new(0, 0, 0)
  482. SpamHeadClones.TextScaled = true
  483. SpamHeadClones.TextSize = 14
  484. SpamHeadClones.TextWrapped = true
  485.  
  486. SpamLimbClones.Name = "Spam Limb Clones - R6 Only"
  487. SpamLimbClones.Parent = FunFrame
  488. SpamLimbClones.BackgroundColor3 = Color3.new(0, 0.784314, 0.784314)
  489. SpamLimbClones.BorderColor3 = Color3.new(0, 0, 0)
  490. SpamLimbClones.BorderSizePixel = 0
  491. SpamLimbClones.Position = UDim2.new(0, 0, 0.765592214, 0)
  492. SpamLimbClones.Size = UDim2.new(0, 100, 0, 25)
  493. SpamLimbClones.Font = Enum.Font.Garamond
  494. SpamLimbClones.Text = "Spam Limb Clones"
  495. SpamLimbClones.TextColor3 = Color3.new(0, 0, 0)
  496. SpamLimbClones.TextScaled = true
  497. SpamLimbClones.TextSize = 14
  498. SpamLimbClones.TextWrapped = true
  499.  
  500. local ButtonSound = Instance.new("Sound")
  501. ButtonSound.SoundId = "rbxassetid://2499155192"
  502. ButtonSound.Volume = 1
  503. ButtonSound.Name = "BTTSound"
  504. ButtonSound.Parent = BuilttoTrollGui
  505.  
  506. function GetPlayer(String)
  507.     local Found = {}
  508.     local strl = String:lower()
  509.     if strl == "all" then
  510.         for i, v in pairs(game.Players:GetPlayers()) do
  511.             table.insert(Found, v.Name)
  512.         end
  513.     elseif strl == "others" then
  514.         for i, v in pairs(game.Players:GetPlayers()) do
  515.             if v.Name ~= game.Players.LocalPlayer.Name then
  516.                 table.insert(Found, v.Name)
  517.             end
  518.         end
  519.     elseif strl == "me" then
  520.         for i, v in pairs(game.Players:GetPlayers()) do
  521.             if v.Name == game.Players.LocalPlayer.Name then
  522.                 table.insert(Found, v.Name)
  523.             end
  524.         end
  525.     else
  526.         for i, v in pairs(game.Players:GetPlayers()) do
  527.             if v.Name:lower():sub(1, #String) == String:lower() then
  528.                 table.insert(Found, v.Name)
  529.             end
  530.         end
  531.     end
  532.     return Found
  533. end
  534.  
  535. ClearBases.MouseButton1Click:Connect(
  536.     function()
  537.         for GetBases, _1 in pairs(workspace:FindFirstChild("Bases"):GetChildren()) do
  538.             if _1:IsA("Model") then
  539.                 for BaseStorages, _2 in pairs(_1:FindFirstChild("Blocks"):GetChildren()) do
  540.                     if _2:IsA("BasePart") then
  541.                         game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  542.                             _2
  543.                         )
  544.                     end
  545.                 end
  546.             end
  547.         end
  548.     end
  549. )
  550.  
  551. ClearWorkspace.MouseButton1Click:Connect(
  552.     function()
  553.         for _, Clear in pairs(workspace:GetDescendants()) do
  554.             BasePart = Clear
  555.             if BasePart:IsA("BasePart") then
  556.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  557.                     Clear
  558.                 )
  559.             end
  560.         end
  561.     end
  562. )
  563.  
  564. PermRemoveMobs.MouseButton1Click:Connect(
  565.     function()
  566.         if workspace:FindFirstChild("Mobs") then
  567.             game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  568.                 workspace.Mobs
  569.             )
  570.         end
  571.     end
  572. )
  573.  
  574. RemoveCages.MouseButton1Click:Connect(
  575.     function()
  576.         if workspace:FindFirstChild("Cages") then
  577.             game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  578.                 workspace.Cages
  579.             )
  580.         end
  581.     end
  582. )
  583.  
  584. RemoveMobs.MouseButton1Click:Connect(
  585.     function()
  586.         for i, v in pairs(workspace.Mobs:GetChildren()) do
  587.             if v:IsA("Model") then
  588.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(v)
  589.             end
  590.         end
  591.     end
  592. )
  593.  
  594. Shutdown.MouseButton1Click:Connect(
  595.     function()
  596.         Shutdown_2.Visible = true
  597.     end
  598. )
  599.  
  600. Close.MouseButton1Click:Connect(
  601.     function()
  602.         Shutdown_2.Visible = false
  603.     end
  604. )
  605.  
  606. Normal.MouseButton1Click:Connect(
  607.     function()
  608.         for _, Shutdown in pairs(game.Players:GetPlayers()) do
  609.             game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(Shutdown)
  610.         end
  611.     end
  612. )
  613.  
  614. Full.MouseButton1Click:Connect(
  615.     function()
  616.         for _, Shutdown in pairs(game:GetDescendants()) do
  617.             Bypass1 = Shutdown
  618.             Bypass2 = Shutdown
  619.             Bypass3 = Shutdown
  620.             Bypass4 = Shutdown
  621.             if
  622.                 Bypass1.Name ~= "PlayerEvents" and Bypass2.Name ~= "e" .. game.Players.LocalPlayer.UserId and
  623.                     Bypass3.Name ~= "PlaceItem" and
  624.                     Bypass4.Name ~= "DestroyItem"
  625.              then
  626.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  627.                     Shutdown
  628.                 )
  629.             end
  630.         end
  631.     end
  632. )
  633.  
  634. Kick.MouseButton1Click:Connect(
  635.     function()
  636.         for i, v in pairs(GetPlayer(Victim.Text)) do
  637.             if game.Players:FindFirstChild(v) then
  638.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  639.                     game.Players:FindFirstChild(v)
  640.                 )
  641.             end
  642.         end
  643.     end
  644. )
  645.  
  646. Kill.MouseButton1Click:Connect(
  647.     function()
  648.         for i, v in pairs(GetPlayer(Victim.Text)) do
  649.             if game.Players:FindFirstChild(v) then
  650.                 if game.Players:FindFirstChild(v).Character then
  651.                     if game.Players[v].Character:FindFirstChild("Torso") then
  652.                         if game.Players[v].Character.Torso:FindFirstChild("Neck") then
  653.                             game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  654.                                 game.Players[v].Character.Torso.Neck
  655.                             )
  656.                         end
  657.                     elseif game.Players[v].Character:FindFirstChild("UpperTorso") then
  658.                         game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  659.                             game.Players[v].Character.UpperTorso
  660.                         )
  661.                     end
  662.                 end
  663.             end
  664.         end
  665.     end
  666. )
  667.  
  668. Punish.MouseButton1Click:Connect(
  669.     function()
  670.         for i, v in pairs(GetPlayer(Victim.Text)) do
  671.             if game.Players:FindFirstChild(v) then
  672.                 if game.Players:FindFirstChild(v).Character then
  673.                     game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  674.                         game.Players[v].Character
  675.                     )
  676.                 end
  677.             end
  678.         end
  679.     end
  680. )
  681.  
  682. Ragdoll.MouseButton1Click:Connect(
  683.     function()
  684.         for i, v in pairs(GetPlayer(Victim.Text)) do
  685.             if game.Players:FindFirstChild(v) then
  686.                 if game.Players:FindFirstChild(v).Character then
  687.                     if game.Players:FindFirstChild(v).Character:FindFirstChild("Humanoid") then
  688.                         game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  689.                             game.Players[v].Character.Humanoid
  690.                         )
  691.                     end
  692.                 end
  693.             end
  694.         end
  695.     end
  696. )
  697.  
  698. TeleportTo.MouseButton1Click:Connect(
  699.     function()
  700.         for i, v in pairs(GetPlayer(Victim.Text)) do
  701.             if game.Players:FindFirstChild(v) then
  702.                 if
  703.                     game.Players[v].Character:FindFirstChild("HumanoidRootPart") and
  704.                         game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  705.                  then
  706.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  707.                         game.Players[v].Character.HumanoidRootPart.CFrame
  708.                 end
  709.             end
  710.         end
  711.     end
  712. )
  713.  
  714. AllBtools.MouseButton1Click:Connect(
  715.     function()
  716.         local LP, Camera, UIS =
  717.             game:GetService("Players")["LocalPlayer"],
  718.             workspace["CurrentCamera"],
  719.             game:GetService("UserInputService")
  720.         local Char, Mouse = LP["Character"], LP:GetMouse()
  721.         local Humanoid, Root = Char:FindFirstChildWhichIsA("Humanoid"), Char["HumanoidRootPart"]
  722.  
  723.         local Tools = {
  724.             ["Move"] = Instance.new("Tool"),
  725.             ["Clone"] = Instance.new("Tool"),
  726.             ["Destroy"] = Instance.new("Tool")
  727.         }
  728.  
  729.         Tools["Move"].TextureId = "rbxassetid://1048129653"
  730.         Tools["Clone"].TextureId = "rbxasset://Textures/Clone.png"
  731.         Tools["Destroy"].TextureId = "http://www.roblox.com/asset/?id=14808588"
  732.         for K, V in next, Tools do
  733.             V["RequiresHandle"] = false
  734.         end
  735.  
  736.         Tools["Move"].Parent = LP.Backpack
  737.         Tools["Clone"].Parent = LP.Backpack
  738.         Tools["Destroy"].Parent = LP.Backpack
  739.  
  740.         local Delete = function(Obj)
  741.             game:GetService("ReplicatedStorage").PlayerEvents["e" .. LP["UserId"]].DestroyItem:FireServer(Obj)
  742.         end
  743.  
  744.         local Place = function(CFrame, Obj)
  745.             game:GetService("ReplicatedStorage").PlayerEvents["e" .. LP["UserId"]].PlaceItem:FireServer(CFrame, Obj)
  746.         end
  747.  
  748.         local IgnoreList = {}
  749.  
  750.         for K, V in next, workspace:GetDescendants() do
  751.             if V:IsA("Part") or V:IsA("BasePart") then
  752.                 if rawequal(V["Transparency"], 1) then
  753.                     table.insert(IgnoreList, V)
  754.                 end
  755.             end
  756.         end
  757.  
  758.         for K, V in next, Char:GetDescendants() do
  759.             if V:IsA("Part") or V:IsA("BasePart") then
  760.                 table.insert(IgnoreList, V)
  761.             end
  762.         end
  763.  
  764.         workspace.DescendantAdded:Connect(
  765.             function(Obj)
  766.                 if Obj:IsA("Part") or Obj:IsA("BasePart") then
  767.                     if rawequal(Obj["Transparency"], 1) then
  768.                         table.insert(IgnoreList, Obj)
  769.                     end
  770.                 end
  771.             end
  772.         )
  773.  
  774.         local PointInfo = function(X, Y)
  775.             local RayA = Camera:ScreenPointToRay(X, Y)
  776.             local RayB = Ray.new(RayA.Origin, RayA.Direction * 1.0e3)
  777.             local Target, Position = workspace:FindPartOnRayWithIgnoreList(RayB, IgnoreList)
  778.             return {Target, Position}
  779.         end
  780.  
  781.         Tools["Destroy"].Deactivated:Connect(
  782.             function()
  783.                 local Obj = PointInfo(Mouse.X, Mouse.Y)[1]
  784.                 Delete(Obj)
  785.             end
  786.         )
  787.  
  788.         Tools["Clone"].Equipped:Connect(
  789.             function(Mouse)
  790.                 Mouse.Icon = "rbxasset://textures/CloneCursor.png"
  791.             end
  792.         )
  793.  
  794.         Tools["Clone"].Unequipped:Connect(
  795.             function()
  796.                 game.Players.LocalPlayer:GetMouse().Icon = ""
  797.             end
  798.         )
  799.  
  800.         Tools["Destroy"].Equipped:Connect(
  801.             function(Mouse)
  802.                 Mouse.Icon = "rbxasset://textures/HammerCursor.png"
  803.             end
  804.         )
  805.  
  806.         Tools["Destroy"].Unequipped:Connect(
  807.             function()
  808.                 game.Players.LocalPlayer:GetMouse().Icon = ""
  809.             end
  810.         )
  811.  
  812.         local Moving
  813.         Tools["Move"].Activated:Connect(
  814.             function()
  815.                 Moving = PointInfo(Mouse.X, Mouse.Y)[1]
  816.                 table.insert(IgnoreList, Moving)
  817.                 local ObjInList = #IgnoreList
  818.                 repeat
  819.                     Mouse.Move:Wait()
  820.                     Moving.CFrame = CFrame.new(PointInfo(Mouse.X, Mouse.Y)[2] + Vector3.new(0, Moving.Size.Y / 2, 0))
  821.                 until #UIS:GetMouseButtonsPressed() < 1
  822.                 IgnoreList[ObjInList] = nil
  823.             end
  824.         )
  825.  
  826.         Tools["Move"].Deactivated:Connect(
  827.             function()
  828.                 Delete(Moving)
  829.                 Place(Moving.CFrame, Moving)
  830.             end
  831.         )
  832.  
  833.         Tools["Clone"].Activated:Connect(
  834.             function()
  835.                 Moving = PointInfo(Mouse.X, Mouse.Y)[1]
  836.                 wait(.2)
  837.                 table.insert(IgnoreList, Moving)
  838.                 local ObjInList = #IgnoreList
  839.                 if #UIS:GetMouseButtonsPressed() > 0 then
  840.                     repeat
  841.                         game:GetService("RunService").RenderStepped:Wait()
  842.                         Moving.CFrame =
  843.                             CFrame.new(PointInfo(Mouse.X, Mouse.Y)[2] + Vector3.new(0, Moving.Size.Y / 2, 0))
  844.                     until #UIS:GetMouseButtonsPressed() < 1
  845.                     Place(Moving.CFrame, Moving)
  846.                 else
  847.                     Place(Moving.CFrame + Vector3.new(0, Moving.Size.Y, 0), Moving)
  848.                 end
  849.                 IgnoreList[ObjInList] = nil
  850.             end
  851.         )
  852.     end
  853. )
  854.  
  855. Copy.MouseButton1Click:Connect(
  856.     function()
  857.         local CopyTool = Instance.new("Tool")
  858.  
  859.         CopyTool.Name = "CopyTool"
  860.         CopyTool.RequiresHandle = false
  861.         CopyTool.Activated:Connect(
  862.             function()
  863.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].PlaceItem:FireServer(
  864.                     game.Players.LocalPlayer:GetMouse().Target.CFrame +
  865.                         Vector3.new(0, game.Players.LocalPlayer:GetMouse().Target.Size.Y, 0),
  866.                     game.Players.LocalPlayer:GetMouse().Target
  867.                 )
  868.             end
  869.         )
  870.  
  871.         CopyTool.Equipped:Connect(
  872.             function(Mouse)
  873.                 Mouse.Icon = "rbxasset://textures/CloneCursor.png"
  874.             end
  875.         )
  876.  
  877.         CopyTool.Unequipped:Connect(
  878.             function()
  879.                 game.Players.LocalPlayer:GetMouse().Icon = ""
  880.             end
  881.         )
  882.  
  883.         CopyTool.TextureId = "rbxasset://Textures/Clone.png"
  884.         CopyTool.Parent = game.Players.LocalPlayer.Backpack
  885.     end
  886. )
  887.  
  888. Move.MouseButton1Click:Connect(
  889.     function()
  890.         local MoveTool = Instance.new("Tool")
  891.  
  892.         local Moving
  893.         local Target
  894.  
  895.         MoveTool.Name = "MoveTool"
  896.         MoveTool.RequiresHandle = false
  897.         MoveTool.Activated:Connect(
  898.             function()
  899.                 Moving = true
  900.                 Target = game.Players.LocalPlayer:GetMouse().Target
  901.                 repeat
  902.                     game.Players.LocalPlayer:GetMouse().Move:Wait()
  903.                     Target.CFrame = CFrame.new(game.Players.LocalPlayer:GetMouse().Hit.p)
  904.                     game.Players.LocalPlayer:GetMouse().TargetFilter = Target
  905.                 until Moving == false
  906.             end
  907.         )
  908.         MoveTool.Deactivated:Connect(
  909.             function()
  910.                 Moving = false
  911.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  912.                     Target
  913.                 )
  914.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].PlaceItem:FireServer(
  915.                     Target.CFrame,
  916.                     Target
  917.                 )
  918.             end
  919.         )
  920.  
  921.         MoveTool.TextureId = "rbxassetid://1048129653"
  922.         MoveTool.Parent = game.Players.LocalPlayer.Backpack
  923.     end
  924. )
  925.  
  926. Delete.MouseButton1Click:Connect(
  927.     function()
  928.         local DeleteTool = Instance.new("Tool")
  929.  
  930.         DeleteTool.Name = "DeleteTool"
  931.         DeleteTool.RequiresHandle = false
  932.         DeleteTool.Activated:Connect(
  933.             function()
  934.                 game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].DestroyItem:FireServer(
  935.                     game.Players.LocalPlayer:GetMouse().Target
  936.                 )
  937.             end
  938.         )
  939.  
  940.         DeleteTool.Equipped:Connect(
  941.             function(Mouse)
  942.                 Mouse.Icon = "rbxasset://textures/HammerCursor.png"
  943.             end
  944.         )
  945.  
  946.         DeleteTool.Unequipped:Connect(
  947.             function()
  948.                 game.Players.LocalPlayer:GetMouse().Icon = ""
  949.             end
  950.         )
  951.  
  952.         DeleteTool.TextureId = "http://www.roblox.com/asset/?id=14808588"
  953.         DeleteTool.Parent = game.Players.LocalPlayer.Backpack
  954.     end
  955. )
  956.  
  957. CreateDeadClone.MouseButton1Click:Connect(
  958.     function()
  959.         Plr = game.Players.LocalPlayer
  960.         Char = Plr.Character
  961.         Head = Char:FindFirstChild("Head")
  962.         Torso = Char:FindFirstChild("Torso")
  963.         L_A = Char:FindFirstChild("Left Arm")
  964.         R_A = Char:FindFirstChild("Right Arm")
  965.         L_L = Char:FindFirstChild("Left Leg")
  966.         local R_L = Char:FindFirstChild("Right Leg")
  967.         Create = game.ReplicatedStorage.PlayerEvents["e" .. Plr.UserId].PlaceItem
  968.  
  969.         if Head and Torso and L_A and R_A and L_L and R_L then
  970.             Head.Anchored = true
  971.             Create:FireServer(Head.CFrame, Head)
  972.             Create:FireServer(Torso.CFrame, Torso)
  973.             Create:FireServer(L_A.CFrame, L_A)
  974.             Create:FireServer(R_A.CFrame, R_A)
  975.             Create:FireServer(L_L.CFrame, L_L)
  976.             Create:FireServer(R_L.CFrame, R_L)
  977.  
  978.             if Torso:FindFirstChild("Neck") then
  979.                 Torso:FindFirstChild("Neck"):Destroy()
  980.             end
  981.         else
  982.             warn("Missing BasePart!")
  983.         end
  984.     end
  985. )
  986.  
  987. SpamHeadClones.MouseButton1Click:Connect(
  988.     function()
  989.         GetHumanoid = game.Players.LocalPlayer.Character:FindFirstChild("Humanoid")
  990.  
  991.         function CloneHead()
  992.             CreateX = game.Players.LocalPlayer.Character:FindFirstChild("Head").CFrame.X
  993.             CreateY = game.Players.LocalPlayer.Character:FindFirstChild("Head").CFrame.Y
  994.             CreateZ = game.Players.LocalPlayer.Character:FindFirstChild("Head").CFrame.Z
  995.             Initialize_Coordinates = {
  996.                 Initialize_XCoordinate = 0,
  997.                 Initialize_YCoordinate = 1,
  998.                 Initialize_ZCoordinate = 2
  999.             }
  1000.             Initialize_Coordinates.Initialize_XCoordinate = CreateX
  1001.             Initialize_Coordinates.Initialize_YCoordinate = CreateY
  1002.             Initialize_Coordinates.Initialize_ZCoordinate = CreateZ
  1003.  
  1004.             game.ReplicatedStorage.PlayerEvents["e" .. game.Players.LocalPlayer.UserId].PlaceItem:FireServer(
  1005.                 CFrame.new(
  1006.                     Initialize_Coordinates.Initialize_XCoordinate,
  1007.                     Initialize_Coordinates.Initialize_YCoordinate,
  1008.                     Initialize_Coordinates.Initialize_ZCoordinate
  1009.                 ),
  1010.                 game.Players.LocalPlayer.Character:FindFirstChild("Head")
  1011.             )
  1012.         end
  1013.  
  1014.         function EndSpam()
  1015.             Spam:Disconnect()
  1016.         end
  1017.  
  1018.         local Hint = Instance.new("Hint")
  1019.         Hint.Text = "Reset to stop"
  1020.         spawn(
  1021.             function()
  1022.                 wait(3)
  1023.                 Hint:Destroy()
  1024.             end
  1025.         )
  1026.  
  1027.         Spam = game.RunService.Heartbeat:Connect(CloneHead)
  1028.         GetHumanoid.Died:Connect(EndSpam)
  1029.     end
  1030. )
  1031.  
  1032. SpamLimbClones.MouseButton1Click:Connect(
  1033.     function()
  1034.         Plr = game.Players.LocalPlayer
  1035.         Char = Plr.Character
  1036.         Torso = Char:FindFirstChild("Torso")
  1037.         GetHumanoid = Char:FindFirstChild("Humanoid")
  1038.  
  1039.         Create = game.ReplicatedStorage.PlayerEvents["e" .. Plr.UserId].PlaceItem
  1040.  
  1041.         L_A = Char["Left Arm"]
  1042.         R_A = Char["Right Arm"]
  1043.         L_L = Char["Left Leg"]
  1044.         R_L = Char["Right Leg"]
  1045.  
  1046.         local Hint = Instance.new("Hint")
  1047.         Hint.Text = "Reset to stop"
  1048.         spawn(
  1049.             function()
  1050.                 wait(3)
  1051.                 Hint:Destroy()
  1052.             end
  1053.         )
  1054.  
  1055.         Limbs = {
  1056.             LeftArm = 0,
  1057.             RightArm = 1,
  1058.             LeftLeg = 2,
  1059.             RightLeg = 3
  1060.         }
  1061.  
  1062.         Limbs.LeftArm = L_A
  1063.         Limbs.RightArm = R_A
  1064.         Limbs.LeftLeg = L_L
  1065.         Limbs.RightLeg = R_L
  1066.  
  1067.         function CloneLimbs()
  1068.             LeftArmCoordinate = Limbs.LeftArm.CFrame
  1069.             RightArmCoordinate = Limbs.RightArm.CFrame
  1070.             LeftLegCoordinate = Limbs.LeftLeg.CFrame
  1071.             RightLegCoordinate = Limbs.RightLeg.CFrame
  1072.  
  1073.             Create:FireServer(LeftArmCoordinate, Limbs.LeftArm)
  1074.             Create:FireServer(RightArmCoordinate, Limbs.RightArm)
  1075.             Create:FireServer(LeftLegCoordinate, Limbs.LeftLeg)
  1076.             Create:FireServer(RightLegCoordinate, Limbs.RightLeg)
  1077.         end
  1078.  
  1079.         Loop = game.RunService.Heartbeat:Connect(CloneLimbs)
  1080.         GetHumanoid.Died:Connect(
  1081.             function()
  1082.                 Loop:Disconnect()
  1083.             end
  1084.         )
  1085.     end
  1086. )
  1087.  
  1088. GameX.MouseButton1Click:Connect(
  1089.     function()
  1090.         GameFrame.Visible = not GameFrame.Visible
  1091.     end
  1092. )
  1093.  
  1094. Players.MouseButton1Click:Connect(
  1095.     function()
  1096.         PlayersFrame.Visible = not PlayersFrame.Visible
  1097.     end
  1098. )
  1099.  
  1100. Tools.MouseButton1Click:Connect(
  1101.     function()
  1102.         ToolsFrame.Visible = not ToolsFrame.Visible
  1103.     end
  1104. )
  1105.  
  1106. Fun.MouseButton1Click:Connect(
  1107.     function()
  1108.         FunFrame.Visible = not FunFrame.Visible
  1109.     end
  1110. )
  1111.  
  1112. Toggle.MouseButton1Click:Connect(
  1113.     function()
  1114.         ToggleGuis = not ToggleGuis
  1115.         if ToggleGuis == true then
  1116.             GameFrame.Visible = false
  1117.             PlayersFrame.Visible = false
  1118.             ToolsFrame.Visible = false
  1119.             FunFrame.Visible = false
  1120.             Shutdown_2.Visible = false
  1121.             Menu.Visible = true
  1122.         elseif ToggleGuis == false then
  1123.             GameFrame.Visible = false
  1124.             PlayersFrame.Visible = false
  1125.             ToolsFrame.Visible = false
  1126.             FunFrame.Visible = false
  1127.             Shutdown_2.Visible = false
  1128.             Menu.Visible = false
  1129.         end
  1130.     end
  1131. )
  1132.  
  1133. for i, v in pairs(BuilttoTrollGui:GetDescendants()) do
  1134.     if v:IsA("TextButton") then
  1135.         CreateButtonSoundClone = ButtonSound:Clone()
  1136.         CreateButtonSoundClone.Parent = v
  1137.         v.MouseButton1Click:Connect(
  1138.             function()
  1139.                 CreateButtonSoundClone:Play()
  1140.             end
  1141.         )
  1142.     end
  1143. end
  1144.  
  1145. function Toggling()
  1146.     if GameFrame.Visible == true then
  1147.         GameX.Text = "Game | -"
  1148.     elseif GameFrame.Visible == false then
  1149.         GameX.Text = "Game | +"
  1150.     end
  1151.     if PlayersFrame.Visible == true then
  1152.         Players.Text = "Players | -"
  1153.     elseif PlayersFrame.Visible == false then
  1154.         Players.Text = "Players | +"
  1155.     end
  1156.     if ToolsFrame.Visible == true then
  1157.         Tools.Text = "Tools | -"
  1158.     elseif ToolsFrame.Visible == false then
  1159.         Tools.Text = "Tools | +"
  1160.     end
  1161.     if FunFrame.Visible == true then
  1162.         Fun.Text = "Fun | -"
  1163.     elseif FunFrame.Visible == false then
  1164.         Fun.Text = "Fun | +"
  1165.     end
  1166. end
  1167.  
  1168. game.RunService.Heartbeat:Connect(Toggling)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement