Advertisement
Migas3456

fe gui

Aug 20th, 2017
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.25 KB | None | 0 0
  1. -- Objects
  2.  
  3. local FeGuiByMigas3456 = Instance.new("ScreenGui")
  4. local FEGui = Instance.new("Frame")
  5. local Info = Instance.new("TextLabel")
  6. local SpawnBlocks = Instance.new("TextButton")
  7. local Kill = Instance.new("TextButton")
  8. local KillAll = Instance.new("TextButton")
  9. local God = Instance.new("TextButton")
  10. local FloatingTorso = Instance.new("TextButton")
  11. local Loopkill = Instance.new("TextButton")
  12. local Control = Instance.new("TextButton")
  13. local Shutdown = Instance.new("TextButton")
  14. local FlyingHead = Instance.new("TextButton")
  15. local Close = Instance.new("TextButton")
  16. local Name = Instance.new("TextBox")
  17.  
  18. -- Properties
  19.  
  20. FeGuiByMigas3456.Name = "FeGuiByMigas3456"
  21. if game.PlaceId == "843495510,843468296" then
  22. FeGuiByMigas3456.Parent = game.Players.LocalPlayer.PlayerGui
  23. FeGuiByMigas3456.ResetOnSpawn = false
  24. else
  25. FeGuiByMigas3456.Parent = game.CoreGui
  26. end
  27.  
  28. FEGui.Name = "FEGui"
  29. FEGui.Parent = FeGuiByMigas3456
  30. FEGui.BackgroundColor3 = Color3.new(0, 0, 0)
  31. FEGui.BackgroundTransparency = 0.5
  32. FEGui.BorderColor3 = Color3.new(1, 0.333333, 0)
  33. FEGui.Position = UDim2.new(0, 0, 0, 311)
  34. FEGui.Size = UDim2.new(0, 642, 0, 367)
  35.  
  36. Info.Name = "Info"
  37. Info.Parent = FEGui
  38. Info.BackgroundColor3 = Color3.new(0, 0, 0)
  39. Info.BackgroundTransparency = 0.5
  40. Info.BorderColor3 = Color3.new(1, 0.333333, 0)
  41. Info.Size = UDim2.new(0, 642, 0, 50)
  42. Info.Font = Enum.Font.SourceSans
  43. Info.FontSize = Enum.FontSize.Size14
  44. Info.Text = "FE Gui"
  45. Info.TextColor3 = Color3.new(1, 0.333333, 0)
  46. Info.TextScaled = true
  47. Info.TextSize = 14
  48. Info.TextWrapped = true
  49.  
  50. SpawnBlocks.Name = "SpawnBlocks"
  51. SpawnBlocks.Parent = FEGui
  52. SpawnBlocks.BackgroundColor3 = Color3.new(0, 0, 0)
  53. SpawnBlocks.BackgroundTransparency = 0.5
  54. SpawnBlocks.BorderColor3 = Color3.new(1, 0.333333, 0)
  55. SpawnBlocks.Position = UDim2.new(0, 440, 0, 97)
  56. SpawnBlocks.Size = UDim2.new(0, 172, 0, 50)
  57. SpawnBlocks.Font = Enum.Font.SourceSans
  58. SpawnBlocks.FontSize = Enum.FontSize.Size14
  59. SpawnBlocks.Text = "FE Spawn Blocks"
  60. SpawnBlocks.TextColor3 = Color3.new(1, 0.333333, 0)
  61. SpawnBlocks.TextSize = 14
  62.  
  63. SpawnBlocks.MouseButton1Down:connect(function()
  64. for i=1,20 do
  65. wait(1)
  66. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  67. if v:IsA'Accoutrement' then
  68. v.Parent=game.Players.LocalPlayer.Character
  69. v.Parent = workspace.Terrain
  70. end
  71. end
  72. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  73. if v:IsA'Accoutrement' then
  74. for ape,hax in pairs(v.Handle:GetChildren()) do
  75. hax:Destroy()
  76. end
  77. wait'.1'
  78. v.Parent=game.Players.LocalPlayer.StarterGear
  79. end
  80. end
  81. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  82. v:Destroy()
  83. end
  84. local prt=Instance.new("Model", workspace);
  85. Instance.new("Part", prt).Name="Torso";
  86. Instance.new("Part", prt).Name="Head";
  87. Instance.new("Humanoid", prt).Name="Humanoid";
  88. game.Players.LocalPlayer.Character=prt
  89.  
  90. repeat wait(1) until game.Players.LocalPlayer.Character:FindFirstChild'Head'
  91. for lol,dad in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  92. if dad:IsA'Accoutrement' then
  93. dad.Parent = game.Players.LocalPlayer.StarterGear
  94. end
  95. end
  96. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  97. v:Destroy()
  98. end
  99. local prt2=Instance.new("Model", workspace);
  100. Instance.new("Part", prt).Name="Torso";
  101. Instance.new("Part", prt).Name="Head";
  102. Instance.new("Humanoid", prt).Name="Humanoid";
  103. game.Players.LocalPlayer.Character=prt
  104. end
  105. end)
  106.  
  107. Kill.Name = "Kill"
  108. Kill.Parent = FEGui
  109. Kill.BackgroundColor3 = Color3.new(0, 0, 0)
  110. Kill.BackgroundTransparency = 0.5
  111. Kill.BorderColor3 = Color3.new(1, 0.333333, 0)
  112. Kill.Position = UDim2.new(0, 235, 0, 96)
  113. Kill.Size = UDim2.new(0, 172, 0, 50)
  114. Kill.Font = Enum.Font.SourceSans
  115. Kill.FontSize = Enum.FontSize.Size14
  116. Kill.Text = "FE Kill"
  117. Kill.TextColor3 = Color3.new(1, 0.333333, 0)
  118. Kill.TextSize = 14
  119.  
  120. Kill.MouseButton1Down:connect(function()
  121. local target = game.Players[Name.Text]
  122. repeat
  123. wait()
  124. target:Move(Vector3.new(math.huge*0))
  125. until not target:FindFirstChild("Head")
  126. end)
  127.  
  128. KillAll.Name = "KillAll"
  129. KillAll.Parent = FEGui
  130. KillAll.BackgroundColor3 = Color3.new(0, 0, 0)
  131. KillAll.BackgroundTransparency = 0.5
  132. KillAll.BorderColor3 = Color3.new(1, 0.333333, 0)
  133. KillAll.Position = UDim2.new(0, 18, 0, 95)
  134. KillAll.Size = UDim2.new(0, 172, 0, 50)
  135. KillAll.Font = Enum.Font.SourceSans
  136. KillAll.FontSize = Enum.FontSize.Size14
  137. KillAll.Text = "FE Kill All"
  138. KillAll.TextColor3 = Color3.new(1, 0.333333, 0)
  139. KillAll.TextSize = 14
  140.  
  141. KillAll.MouseButton1Down:connect(function()
  142. for i, v in next, game.Players:GetPlayers() do
  143. v:Move(Vector3.new(math.huge*0))
  144. end
  145. end)
  146.  
  147. God.Name = "God"
  148. God.Parent = FEGui
  149. God.BackgroundColor3 = Color3.new(0, 0, 0)
  150. God.BackgroundTransparency = 0.5
  151. God.BorderColor3 = Color3.new(1, 0.333333, 0)
  152. God.Position = UDim2.new(0, 17, 0, 183)
  153. God.Size = UDim2.new(0, 172, 0, 50)
  154. God.Font = Enum.Font.SourceSans
  155. God.FontSize = Enum.FontSize.Size14
  156. God.Text = "FE God"
  157. God.TextColor3 = Color3.new(1, 0.333333, 0)
  158. God.TextSize = 14
  159.  
  160. God.MouseButton1Down:connect(function()
  161. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  162. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  163. l.Parent = game.Players.LocalPlayer.Character
  164. l.Name = "Humanoid"
  165. wait(0.1)
  166. game.Players.LocalPlayer.Character["1"]:Destroy()
  167. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  168. game.Players.LocalPlayer.Character.Animate.Disabled = true
  169. wait(0.1)
  170. game.Players.LocalPlayer.Character.Animate.Disabled = false
  171. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  172. end)
  173.  
  174. FloatingTorso.Name = "Floating Torso"
  175. FloatingTorso.Parent = FEGui
  176. FloatingTorso.BackgroundColor3 = Color3.new(0, 0, 0)
  177. FloatingTorso.BackgroundTransparency = 0.5
  178. FloatingTorso.BorderColor3 = Color3.new(1, 0.333333, 0)
  179. FloatingTorso.Position = UDim2.new(0, 235, 0, 183)
  180. FloatingTorso.Size = UDim2.new(0, 172, 0, 50)
  181. FloatingTorso.Font = Enum.Font.SourceSans
  182. FloatingTorso.FontSize = Enum.FontSize.Size14
  183. FloatingTorso.Text = "FE Floating Torso"
  184. FloatingTorso.TextColor3 = Color3.new(1, 0.333333, 0)
  185. FloatingTorso.TextSize = 14
  186.  
  187. FloatingTorso.MouseButton1Down:connect(function()
  188. local Weld1 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  189. Weld1.Part0 = game.Players.LocalPlayer.Character.Head
  190. Weld1.Part1 = game.Players.LocalPlayer.Character.Torso
  191. local Weld2 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  192. Weld2.Part0 = game.Players.LocalPlayer.Character["Left Arm"]
  193. Weld2.Part1 = game.Players.LocalPlayer.Character.Torso
  194. local Weld3 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  195. Weld3.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  196. Weld3.Part1 = game.Players.LocalPlayer.Character.Torso
  197. local Weld4 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  198. Weld4.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
  199. Weld4.Part1 = game.Players.LocalPlayer.Character.Torso
  200. local Weld5 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  201. Weld5.Part0 = game.Players.LocalPlayer.Character["Left Leg"]
  202. Weld5.Part1 = game.Players.LocalPlayer.Character.Torso
  203. end)
  204.  
  205. Loopkill.Name = "Loopkill"
  206. Loopkill.Parent = FEGui
  207. Loopkill.BackgroundColor3 = Color3.new(0, 0, 0)
  208. Loopkill.BackgroundTransparency = 0.5
  209. Loopkill.BorderColor3 = Color3.new(1, 0.333333, 0)
  210. Loopkill.Position = UDim2.new(0, 440, 0, 183)
  211. Loopkill.Size = UDim2.new(0, 172, 0, 50)
  212. Loopkill.Font = Enum.Font.SourceSans
  213. Loopkill.FontSize = Enum.FontSize.Size14
  214. Loopkill.Text = "FE Loopkill"
  215. Loopkill.TextColor3 = Color3.new(1, 0.333333, 0)
  216. Loopkill.TextSize = 14
  217.  
  218. Loopkill.MouseButton1Down:connect(function()
  219. while true do
  220. local target = game.Players:FindFirstChild(Name.Text)
  221. target:Move(Vector3.new(math.huge,math.huge,math.huge))
  222. wait()
  223. end
  224. end)
  225.  
  226. Control.Name = "Control"
  227. Control.Parent = FEGui
  228. Control.BackgroundColor3 = Color3.new(0, 0, 0)
  229. Control.BackgroundTransparency = 0.5
  230. Control.BorderColor3 = Color3.new(1, 0.333333, 0)
  231. Control.Position = UDim2.new(0, 16, 0, 275)
  232. Control.Size = UDim2.new(0, 172, 0, 50)
  233. Control.Font = Enum.Font.SourceSans
  234. Control.FontSize = Enum.FontSize.Size14
  235. Control.Text = "FE Control"
  236. Control.TextColor3 = Color3.new(1, 0.333333, 0)
  237. Control.TextSize = 14
  238.  
  239. Control.MouseButton1Down:connect(function()
  240. v = game.Workspace.LocalPlayer
  241. vp = game.Players.LocalPlayer
  242. b = game.Players:FindFirstChild(Name.Text)
  243. v.Humanoid.WalkSpeed=16
  244. game.Workspace.CurrentCamera.CameraSubject = vp.Character.Head
  245. game.Players.LocalPlayer.Character.Humanoid:Destroy()
  246. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  247. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  248. game.Players.LocalPlayer.Character["Head"]:Destroy()
  249. game.Players.LocalPlayer.Character["Torso"]:Destroy()
  250. game.Players.LocalPlayer.Character["Left Arm"]:Destroy()
  251. game.Players.LocalPlayer.Character["Right Arm"]:Destroy()
  252. v.Humanoid.Parent=b
  253. v["Left Leg"].Parent=b
  254. v["Right Leg"].Parent=b
  255. v["Head"].Parent=b
  256. v["Torso"].Parent=b
  257. v["Left Arm"].Parent=b
  258. v["Right Arm"].Parent=b
  259. v.Humanoid.WalkSpeed=16
  260. b.Humanoid.WalkSpeed=16
  261. --You have to bhop ish to move
  262. end)
  263.  
  264. Shutdown.Name = "Shutdown"
  265. Shutdown.Parent = FEGui
  266. Shutdown.BackgroundColor3 = Color3.new(0, 0, 0)
  267. Shutdown.BackgroundTransparency = 0.5
  268. Shutdown.BorderColor3 = Color3.new(1, 0.333333, 0)
  269. Shutdown.Position = UDim2.new(0, 235, 0, 277)
  270. Shutdown.Size = UDim2.new(0, 172, 0, 50)
  271. Shutdown.Font = Enum.Font.SourceSans
  272. Shutdown.FontSize = Enum.FontSize.Size14
  273. Shutdown.Text = "Sword(Only Works For City Life)"
  274. Shutdown.TextColor3 = Color3.new(1, 0.333333, 0)
  275. Shutdown.TextSize = 14
  276.  
  277. Shutdown.MouseButton1Down:connect(function()
  278. --how to hammer 101 this only works for city life--
  279. plr = "LocalPlayer" --player to give tool to
  280.  
  281.  
  282. plr = game:GetService'Players'[plr]
  283. game:GetService'ReplicatedStorage'.ITEM_PURCHASE:InvokeServer('meme', '7', '1055299')
  284. lp = game:GetService'Players'.LocalPlayer
  285. hat = lp.Character:WaitForChild'meme'
  286. hammer = hat.GravityHammer
  287. hammer.Parent = lp:FindFirstChildOfClass'Backpack'
  288. --DIRTY HACKS TO PARENT HAT/TOOLS WITH REPLICATION ON FE--
  289. hat.Parent = nil
  290. hammer.Parent = lp.Character
  291. game:GetService'RunService'.Stepped:wait()
  292. hammer.Parent = plr.Character
  293. for i = 1,3 do
  294. local lol = lp:FindFirstChildOfClass'Backpack':FindFirstChildOfClass'HopperBin'
  295. if lol:FindFirstChild'LocalScript' then lol:Destroy() end
  296. end
  297. end)
  298.  
  299. FlyingHead.Name = "FlyingHead"
  300. FlyingHead.Parent = FEGui
  301. FlyingHead.BackgroundColor3 = Color3.new(0, 0, 0)
  302. FlyingHead.BackgroundTransparency = 0.5
  303. FlyingHead.BorderColor3 = Color3.new(1, 0.333333, 0)
  304. FlyingHead.Position = UDim2.new(0, 441, 0, 276)
  305. FlyingHead.Size = UDim2.new(0, 172, 0, 50)
  306. FlyingHead.Font = Enum.Font.SourceSans
  307. FlyingHead.FontSize = Enum.FontSize.Size14
  308. FlyingHead.Text = "FE BTools(only works on chicken express)"
  309. FlyingHead.TextColor3 = Color3.new(1, 0.333333, 0)
  310. FlyingHead.TextSize = 14
  311.  
  312. FlyingHead.MouseButton1Down:connect(function()
  313. --fe cafe hammertool script only works for Chicken Express Restaurant!--
  314. maind = nil
  315. if workspace:FindFirstChild'GiveSystem' then
  316. if workspace.GiveSystem:FindFirstChild'GiveItem' then
  317. maind = workspace.GiveSystem.GiveItem
  318. end
  319. end
  320. if workspace:FindFirstChild'HandToCentre' then
  321. if workspace.HandToCentre:FindFirstChild'SendItem' then
  322. maind = workspace.HandToCentre.SendItem
  323. end
  324. end
  325. if maind == nil then
  326. print'could not find give event :('
  327. return
  328. end
  329. tool = Instance.new'Tool'
  330. me = game:GetService'Players'.LocalPlayer
  331. tool.RequiresHandle = false
  332. tool.TextureId = 'http://www.roblox.com/asset/?id=12223874'
  333. tool.Name = 'ya like jazz?'
  334. tool.Parent = me.Backpack
  335. buttonf = nil
  336. tool.Equipped:connect(function()
  337. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  338. m.Icon = 'rbxasset://textures/HammerCursor.png'
  339. buttonf = m.Button1Down:connect(function()
  340. if m.Target == nil then return end
  341. local ob = m.Target
  342. if ob:IsA'BasePart' or ob:IsA'WedgePart' then
  343. if ob:IsDescendantOf(me.Character) then return end
  344. m.Icon = 'rbxasset://textures/HammerOverCursor.png'
  345. local ex = Instance.new'Explosion'
  346. ex.BlastRadius = 0
  347. ex.Position = ob.Position
  348. ex.Parent = workspace
  349. maind:FireServer(workspace, ob)
  350. wait(0.3)
  351. m.Icon = 'rbxasset://textures/HammerCursor.png'
  352. end
  353. end)
  354. end)
  355. tool.Unequipped:connect(function()
  356. if buttonf ~= nil then
  357. buttonf:Disconnect()
  358. buttonf = nil
  359. end
  360. local m = game:GetService'Players'.LocalPlayer:GetMouse()
  361. m.Icon = ''
  362. end)
  363. end)
  364.  
  365. Close.Name = "Close"
  366. Close.Parent = FEGui
  367. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  368. Close.BackgroundTransparency = 1
  369. Close.Position = UDim2.new(0, 516, 0, 0)
  370. Close.Size = UDim2.new(0, 200, 0, 50)
  371. Close.Font = Enum.Font.SourceSans
  372. Close.FontSize = Enum.FontSize.Size14
  373. Close.Text = "X"
  374. Close.TextColor3 = Color3.new(1, 0, 0)
  375. Close.TextScaled = true
  376. Close.TextSize = 14
  377. Close.TextWrapped = true
  378.  
  379. Close.MouseButton1Down:connect(function()
  380. FeGuiByMigas3456:Remove()
  381. end)
  382.  
  383. Name.Name = "Name"
  384. Name.Parent = FEGui
  385. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  386. Name.BackgroundTransparency = 0.5
  387. Name.BorderColor3 = Color3.new(1, 0.333333, 0)
  388. Name.Position = UDim2.new(0, 221, 0, 56)
  389. Name.Size = UDim2.new(0, 200, 0, 33)
  390. Name.Font = Enum.Font.SourceSans
  391. Name.FontSize = Enum.FontSize.Size14
  392. Name.Text = "Name"
  393. Name.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement