Advertisement
DylanD2003

Untitled

Jul 13th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.33 KB | None | 0 0
  1. local FEGUI = Instance.new("ScreenGui")
  2. local topbar = Instance.new("Frame")
  3. local main = Instance.new("Frame")
  4. local colorlabel = Instance.new("TextLabel")
  5. local colorgray = Instance.new("TextButton")
  6. local colorred = Instance.new("TextButton")
  7. local colorblue = Instance.new("TextButton")
  8. local colororange = Instance.new("TextButton")
  9. local killall = Instance.new("TextButton")
  10. local kill = Instance.new("TextButton")
  11. local killothers = Instance.new("TextButton")
  12. local goto = Instance.new("TextButton")
  13. local god = Instance.new("TextButton")
  14. local floattorso = Instance.new("TextButton")
  15. local name = Instance.new("TextBox")
  16. local exit = Instance.new("TextButton")
  17.  
  18. -- Properties
  19.  
  20. FEGUI.Name = "FEGUI"
  21. FEGUI.Parent = game.CoreGui
  22.  
  23. topbar.Name = "topbar"
  24. topbar.Parent = FEGUI
  25. topbar.Active = true
  26. topbar.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  27. topbar.BorderSizePixel = 0
  28. topbar.Draggable = true
  29. topbar.Position = UDim2.new(0, 949, 0, 269)
  30. topbar.Selectable = true
  31. topbar.Size = UDim2.new(0, 227, 0, 27)
  32.  
  33. main.Name = "main"
  34. main.Parent = topbar
  35. main.BackgroundColor3 = Color3.new(1, 1, 1)
  36. main.BorderSizePixel = 0
  37. main.Position = UDim2.new(0, 0, 0, 27)
  38. main.Size = UDim2.new(0, 227, 0, 209)
  39.  
  40. colorlabel.Name = "colorlabel"
  41. colorlabel.Parent = main
  42. colorlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  43. colorlabel.BackgroundTransparency = 1
  44. colorlabel.Position = UDim2.new(0, 13, 0, 0)
  45. colorlabel.Size = UDim2.new(0, 196, 0, 21)
  46. colorlabel.Font = Enum.Font.ArialBold
  47. colorlabel.FontSize = Enum.FontSize.Size18
  48. colorlabel.Text = "Color:"
  49. colorlabel.TextColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  50. colorlabel.TextSize = 18
  51.  
  52. colorgray.Name = "colorgray"
  53. colorgray.Parent = main
  54. colorgray.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  55. colorgray.BorderSizePixel = 0
  56. colorgray.Position = UDim2.new(0, 35, 0, 27)
  57. colorgray.Size = UDim2.new(0, 33, 0, 17)
  58. colorgray.Font = Enum.Font.SourceSans
  59. colorgray.FontSize = Enum.FontSize.Size14
  60. colorgray.Text = ""
  61. colorgray.TextSize = 14
  62.  
  63. colorred.Name = "colorred"
  64. colorred.Parent = main
  65. colorred.BackgroundColor3 = Color3.new(0.796079, 0, 0)
  66. colorred.BorderSizePixel = 0
  67. colorred.Position = UDim2.new(0, 75, 0, 27)
  68. colorred.Size = UDim2.new(0, 33, 0, 17)
  69. colorred.Font = Enum.Font.SourceSans
  70. colorred.FontSize = Enum.FontSize.Size14
  71. colorred.Text = ""
  72. colorred.TextSize = 14
  73.  
  74. colorblue.Name = "colorblue"
  75. colorblue.Parent = main
  76. colorblue.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  77. colorblue.BorderSizePixel = 0
  78. colorblue.Position = UDim2.new(0, 115, 0, 27)
  79. colorblue.Size = UDim2.new(0, 33, 0, 17)
  80. colorblue.Font = Enum.Font.SourceSans
  81. colorblue.FontSize = Enum.FontSize.Size14
  82. colorblue.Text = ""
  83. colorblue.TextSize = 14
  84.  
  85. colororange.Name = "colororange"
  86. colororange.Parent = main
  87. colororange.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  88. colororange.BorderSizePixel = 0
  89. colororange.Position = UDim2.new(0, 155, 0, 27)
  90. colororange.Size = UDim2.new(0, 33, 0, 17)
  91. colororange.Font = Enum.Font.SourceSans
  92. colororange.FontSize = Enum.FontSize.Size14
  93. colororange.Text = ""
  94. colororange.TextSize = 14
  95.  
  96. killall.Name = "killall"
  97. killall.Parent = main
  98. killall.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  99. killall.BorderSizePixel = 0
  100. killall.Position = UDim2.new(0, 15, 0, 94)
  101. killall.Size = UDim2.new(0, 64, 0, 50)
  102. killall.Font = Enum.Font.Arial
  103. killall.FontSize = Enum.FontSize.Size14
  104. killall.Text = "Kill All"
  105. killall.TextColor3 = Color3.new(1, 1, 1)
  106. killall.TextSize = 14
  107.  
  108. kill.Name = "kill"
  109. kill.Parent = main
  110. kill.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  111. kill.BorderSizePixel = 0
  112. kill.Position = UDim2.new(0, 82, 0, 94)
  113. kill.Size = UDim2.new(0, 64, 0, 50)
  114. kill.Font = Enum.Font.Arial
  115. kill.FontSize = Enum.FontSize.Size14
  116. kill.Text = "Kill"
  117. kill.TextColor3 = Color3.new(1, 1, 1)
  118. kill.TextSize = 14
  119.  
  120. killothers.Name = "killothers"
  121. killothers.Parent = main
  122. killothers.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  123. killothers.BorderSizePixel = 0
  124. killothers.Position = UDim2.new(0, 149, 0, 94)
  125. killothers.Size = UDim2.new(0, 64, 0, 50)
  126. killothers.Font = Enum.Font.Arial
  127. killothers.FontSize = Enum.FontSize.Size14
  128. killothers.Text = "Kill Others"
  129. killothers.TextColor3 = Color3.new(1, 1, 1)
  130. killothers.TextSize = 14
  131. killothers.TextWrapped = true
  132.  
  133. goto.Name = "goto"
  134. goto.Parent = main
  135. goto.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  136. goto.BorderSizePixel = 0
  137. goto.Position = UDim2.new(0, 15, 0, 147)
  138. goto.Size = UDim2.new(0, 64, 0, 50)
  139. goto.Font = Enum.Font.Arial
  140. goto.FontSize = Enum.FontSize.Size14
  141. goto.Text = "Goto"
  142. goto.TextColor3 = Color3.new(1, 1, 1)
  143. goto.TextSize = 14
  144.  
  145. god.Name = "god"
  146. god.Parent = main
  147. god.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  148. god.BorderSizePixel = 0
  149. god.Position = UDim2.new(0, 82, 0, 147)
  150. god.Size = UDim2.new(0, 64, 0, 50)
  151. god.Font = Enum.Font.Arial
  152. god.FontSize = Enum.FontSize.Size14
  153. god.Text = "God"
  154. god.TextColor3 = Color3.new(1, 1, 1)
  155. god.TextSize = 14
  156.  
  157. floattorso.Name = "floattorso"
  158. floattorso.Parent = main
  159. floattorso.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  160. floattorso.BorderSizePixel = 0
  161. floattorso.Position = UDim2.new(0, 149, 0, 147)
  162. floattorso.Size = UDim2.new(0, 64, 0, 50)
  163. floattorso.Font = Enum.Font.Arial
  164. floattorso.FontSize = Enum.FontSize.Size14
  165. floattorso.Text = "Floating Torso"
  166. floattorso.TextColor3 = Color3.new(1, 1, 1)
  167. floattorso.TextSize = 14
  168. floattorso.TextWrapped = true
  169.  
  170. name.Name = "name"
  171. name.Parent = main
  172. name.BorderSizePixel = 2
  173. name.Position = UDim2.new(0, 15, 0, 59)
  174. name.Size = UDim2.new(0, 197, 0, 23)
  175. name.Font = Enum.Font.ArialBold
  176. name.FontSize = Enum.FontSize.Size14
  177. name.Text = "Player Name"
  178. name.BorderColor3 = Color3.new(00.45098, 0.45098, 0.45098)
  179. name.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  180. name.TextColor3 = Color3.new(255, 255, 255)
  181. name.TextSize = 14
  182.  
  183. exit.Name = "exit"
  184. exit.Parent = topbar
  185. exit.BackgroundColor3 = Color3.new(1, 1, 1)
  186. exit.BackgroundTransparency = 1
  187. exit.Position = UDim2.new(0, 194, 0, 0)
  188. exit.Size = UDim2.new(0, 33, 0, 27)
  189. exit.Font = Enum.Font.Arial
  190. exit.FontSize = Enum.FontSize.Size18
  191. exit.Text = "X"
  192. exit.TextColor3 = Color3.new(1, 1, 1)
  193. exit.TextSize = 18
  194. colorgray.MouseButton1Click:connect(function()
  195. local a = {name, floattorso, god, goto, killothers, kill, killall, topbar}
  196. for i,v in pairs(a) do
  197. v.BackgroundColor3 = Color3.new(0.607843, 0.607843, 0.607843)
  198. v.BorderColor3 = Color3.new(0.607843, 0.607843, 0.607843)
  199. if v.ClassName == "TextButton" then
  200. v.TextColor3 = Color3.new(255, 255, 255)
  201. end
  202. end
  203. end)
  204. colorred.MouseButton1Click:connect(function()
  205. local a = {name, floattorso, god, goto, killothers, kill, killall, topbar}
  206. for i,v in pairs(a) do
  207. v.BackgroundColor3 = Color3.new(0.796079, 0, 0)
  208. v.BorderColor3 = Color3.new(0.796079, 0, 0)
  209. if v.ClassName == "TextButton" then
  210. v.TextColor3 = Color3.new(255, 255, 255)
  211. if v.ClassName == "TextBox" then
  212. v.BackgroundColor3 = Color3.new(255, 255, 255)
  213. end
  214. end
  215. end
  216. end)
  217. colorblue.MouseButton1Click:connect(function()
  218. local a = {name, floattorso, god, goto, killothers, kill, killall, topbar}
  219. for i,v in pairs(a) do
  220. v.BackgroundColor3 = Color3.new(0.333333, 0.666667, 1)
  221. v.BorderColor3 = Color3.new(0.333333, 0.666667, 1)
  222. if v.ClassName == "TextButton" then
  223. v.TextColor3 = Color3.new(255, 255, 255)
  224. if v.ClassName == "TextBox" then
  225. v.BackgroundColor3 = Color3.new(255, 255, 255)
  226. end
  227. end
  228. end
  229. end)
  230. colororange.MouseButton1Click:connect(function()
  231. local a = {name, floattorso, god, goto, killothers, kill, killall, topbar}
  232. for i,v in pairs(a) do
  233. v.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  234. v.BorderColor3 = Color3.new(1, 0.666667, 0)
  235. if v.ClassName == "TextButton" then
  236. v.TextColor3 = Color3.new(255, 255, 255)
  237. if v.ClassName == "TextBox" then
  238. v.BackgroundColor3 = Color3.new(255, 255, 255)
  239. end
  240. end
  241. end
  242. end)
  243. god.MouseButton1Click:connect(function()
  244. game.Players.LocalPlayer.Character.Humanoid.Name = 1
  245. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  246. l.Parent = game.Players.LocalPlayer.Character
  247. l.Name = "Humanoid"
  248. wait(0.1)
  249. game.Players.LocalPlayer.Character["1"]:Destroy()
  250. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  251. game.Players.LocalPlayer.Character.Animate.Disabled = true
  252. wait(0.1)
  253. game.Players.LocalPlayer.Character.Animate.Disabled = false
  254. game.Players.LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  255. end)
  256. goto.MouseButton1Click:connect(function()
  257. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players:FindFirstChild(name.Text).Character.HumanoidRootPart.Position)
  258. end)
  259. killothers.MouseButton1Click:connect(function()
  260. local move = math.huge*math.huge
  261. for i,v in pairs(game.Players:GetPlayers()) do
  262. if v.Name~=game.Players.LocalPlayer.Name then
  263. v:Move(Vector3.new(move))
  264. end
  265. end
  266. end)
  267. kill.MouseButton1Click:connect(function()
  268. local victim = name.Text
  269. local move = math.huge*math.huge
  270. for i,v in pairs(game.Players:GetPlayers()) do
  271. if v.Name == victim then
  272. v:Move(Vector3.new(move))
  273. end
  274. end
  275. end)
  276. killall.MouseButton1Click:connect(function()
  277. local move = math.huge*math.huge
  278. for i,v in pairs(game.Players:GetPlayers()) do
  279. v:Move(Vector3.new(move))
  280. end
  281. end)
  282. floattorso.MouseButton1Click:connect(function()
  283. local Weld1 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  284. Weld1.Part0 = game.Players.LocalPlayer.Character.Head
  285. Weld1.Part1 = game.Players.LocalPlayer.Character.Torso
  286. local Weld2 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  287. Weld2.Part0 = game.Players.LocalPlayer.Character["Left Arm"]
  288. Weld2.Part1 = game.Players.LocalPlayer.Character.Torso
  289. local Weld3 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  290. Weld3.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  291. Weld3.Part1 = game.Players.LocalPlayer.Character.Torso
  292. local Weld4 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  293. Weld4.Part0 = game.Players.LocalPlayer.Character["Right Leg"]
  294. Weld4.Part1 = game.Players.LocalPlayer.Character.Torso
  295. local Weld5 = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  296. Weld5.Part0 = game.Players.LocalPlayer.Character["Left Leg"]
  297. Weld5.Part1 = game.Players.LocalPlayer.Character.Torso
  298. end)
  299. exit.MouseButton1Click:connect(function()
  300. FEGUI:ClearAllChildren()
  301. FEGUI:remove()
  302. print("Goodbye "..game.Players.LocalPlayer.Name)
  303. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement