Advertisement
Sinderblock

egg

Jul 13th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.50 KB | None | 0 0
  1. local fpsweird = Instance.new("ScreenGui")
  2. local activateframe = Instance.new("Frame")
  3. local activate = Instance.new("TextButton")
  4. local fpsframe = Instance.new("Frame")
  5. local waa = Instance.new("Frame")
  6. local ku = Instance.new("TextLabel")
  7. local esp = Instance.new("TextButton")
  8. local aimbot = Instance.new("TextButton")
  9. local ctrlclickdel = Instance.new("TextButton")
  10. local infjump = Instance.new("TextButton")
  11. local noc = Instance.new("TextButton")
  12. local brokem = Instance.new("TextButton")
  13. local empty = Instance.new("TextButton")
  14. local empty_2 = Instance.new("TextButton")
  15. local brokem_2 = Instance.new("TextButton")
  16. local esp_2 = Instance.new("TextButton")
  17.  
  18. fpsweird.Name = "fps weird"
  19. fpsweird.Parent = game.CoreGui
  20. fpsweird.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. activateframe.Name = "activateframe"
  23. activateframe.Parent = fpsweird
  24. activateframe.BackgroundColor3 = Color3.new(1, 1, 1)
  25. activateframe.Position = UDim2.new(0.0235017594, 0, 0.040133778, 0)
  26. activateframe.Size = UDim2.new(0, 209, 0, 254)
  27.  
  28. activate.Name = "activate"
  29. activate.Parent = activateframe
  30. activate.BackgroundColor3 = Color3.new(1, 1, 1)
  31. activate.Position = UDim2.new(0.0340775475, 0, 0.0270323269, 0)
  32. activate.Size = UDim2.new(0, 193, 0, 241)
  33. activate.Font = Enum.Font.SourceSans
  34. activate.Text = "Activate Leg0 Haxx"
  35. activate.TextColor3 = Color3.new(0, 0, 0)
  36. activate.TextScaled = true
  37. activate.TextSize = 14
  38. activate.TextWrapped = true
  39. activate.MouseButton1Down:connect(function()
  40. fpsframe.Visible = true
  41. activateframe.Visible = false
  42. end)
  43.  
  44. fpsframe.Name = "fpsframe"
  45. fpsframe.Parent = fpsweird
  46. fpsframe.Active = true
  47. fpsframe.BackgroundColor3 = Color3.new(0.321569, 0.847059, 0.87451)
  48. fpsframe.BackgroundTransparency = 0.40000000596046
  49. fpsframe.BorderColor3 = Color3.new(0.113725, 0.258824, 0.0705882)
  50. fpsframe.BorderSizePixel = 10
  51. fpsframe.Position = UDim2.new(0.315038443, 0, 0.153846145, 0)
  52. fpsframe.Selectable = true
  53. fpsframe.Size = UDim2.new(0, 272, 0, 368)
  54. fpsframe.Visible = false
  55.  
  56. waa.Name = "waa"
  57. waa.Parent = fpsframe
  58. waa.BackgroundColor3 = Color3.new(0.203922, 0.462745, 0.584314)
  59. waa.BackgroundTransparency = 0.40000000596046
  60. waa.Size = UDim2.new(0, 272, 0, 64)
  61.  
  62. ku.Name = "ku"
  63. ku.Parent = waa
  64. ku.BackgroundColor3 = Color3.new(1, 1, 1)
  65. ku.BackgroundTransparency = 1
  66. ku.Position = UDim2.new(0.00171869993, 0, -0.00253731012, 0)
  67. ku.Size = UDim2.new(0, 271, 0, 67)
  68. ku.Font = Enum.Font.SourceSans
  69. ku.Text = "i made this because im bored and put no effort into it"
  70. ku.TextColor3 = Color3.new(0, 0, 0)
  71. ku.TextScaled = true
  72. ku.TextSize = 14
  73. ku.TextWrapped = true
  74.  
  75. esp.Name = "esp"
  76. esp.Parent = fpsframe
  77. esp.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  78. esp.BackgroundTransparency = 0.5
  79. esp.BorderSizePixel = 3
  80. esp.Position = UDim2.new(0.0288991928, 0, 0.632525086, 0)
  81. esp.Size = UDim2.new(0, 71, 0, 55)
  82. esp.Font = Enum.Font.SourceSans
  83. esp.Text = "ESP"
  84. esp.TextColor3 = Color3.new(0, 0, 0)
  85. esp.TextScaled = true
  86. esp.TextSize = 14
  87. esp.TextWrapped = true
  88. esp.MouseButton1Down:connect(function()
  89. -- -----------------------------------
  90. -- ___ _ _ _ --
  91. -- / __| ___| |_| |_(_)_ _ __ _ ___--
  92. -- \__ \/ -_) _| _| | ' \/ _` (_-<--
  93. -- |___/\___|\__|\__|_|_||_\__, /__/--
  94. -- |___/ --
  95. -- -----------------------------------
  96. -- -----------------------------------
  97. ALLYCOLOR = {0,255,255} --//Color of the ESP of people on the same team
  98. ENEMYCOLOR = {255,0,0} --//Color of the ESP of people on NOT the same team
  99. TRANSPARENCY = 0.5 --//Transparency of the ESP
  100. HEALTHBAR_ACTIVATED = true --//Renders the Healthbar
  101. --
  102. --
  103.  
  104. -- !!!Don't Change Anything Below Here Unless You Know What You're Doing!!!
  105.  
  106. function createFlex()
  107. -- -----------------------------------------------------------------------------------
  108. --[VARIABLES] //Changing may result in Errors!
  109. players = game:GetService("Players") --//Required for PF
  110. faces = {"Front","Back","Bottom","Left","Right","Top"} --//Every possible Enum face
  111. currentPlayer = nil --//Used for the Team-Check
  112. lplayer = players.LocalPlayer --//The LocalPlayer
  113. -- -----------------------------------------------------------------------------------
  114. players.PlayerAdded:Connect(function(p)
  115. currentPlayer = p
  116. p.CharacterAdded:Connect(function(character) --//For when a new Player joins the game
  117. createESP(character)
  118. end)
  119. end)
  120. -- -----------------------------------------------------------------------------------
  121. function checkPart(obj) if (obj:IsA("Part") or obj:IsA("MeshPart")) and obj.Name~="HumanoidRootPart" then return true end end --//Check if the Part is suitable
  122. -- -----------------------------------------------------------------------------------
  123. function actualESP(obj)
  124.  
  125. for i=0,5 do
  126. surface = Instance.new("SurfaceGui",obj) --//Creates the SurfaceGui
  127. surface.Face = Enum.NormalId[faces[i+1]] --//Adjusts the Face and chooses from the face table
  128. surface.AlwaysOnTop = true
  129.  
  130. frame = Instance.new("Frame",surface) --//Creates the viewable Frame
  131. frame.Size = UDim2.new(1,0,1,0)
  132. frame.BorderSizePixel = 0
  133. frame.BackgroundTransparency = TRANSPARENCY
  134. if currentPlayer.Team == players.LocalPlayer.Team then --//Checks the Players Team
  135. frame.BackgroundColor3 = Color3.new(ALLYCOLOR[1],ALLYCOLOR[2],ALLYCOLOR[3]) --//If in same Team
  136. else
  137. frame.BackgroundColor3 = Color3.new(ENEMYCOLOR[1],ENEMYCOLOR[2],ENEMYCOLOR[3]) --//If in another Team
  138. end
  139.  
  140. end
  141. end
  142. -- -----------------------------------------------------------------------------------
  143. function createHealthbar(hrp)
  144. board =Instance.new("BillboardGui",hrp) --//Creates the BillboardGui with HumanoidRootPart as the Parent
  145. board.Name = "total"
  146. board.Size = UDim2.new(1,0,1,0)
  147. board.StudsOffset = Vector3.new(3,1,0)
  148. board.AlwaysOnTop = true
  149.  
  150. bar = Instance.new("Frame",board) --//Creates the red background
  151. bar.BackgroundColor3 = Color3.new(255,0,0)
  152. bar.BorderSizePixel = 0
  153. bar.Size = UDim2.new(0.2,0,4,0)
  154. bar.Name = "total2"
  155.  
  156. health = Instance.new("Frame",bar) --//Creates the changing green Frame
  157. health.BackgroundColor3 = Color3.new(0,255,0)
  158. health.BorderSizePixel = 0
  159. health.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0)
  160. hrp.Parent.Humanoid.Changed:Connect(function(property) --//Triggers when any Property changed
  161. hrp.total.total2.Frame.Size = UDim2.new(1,0,hrp.Parent.Humanoid.Health/100,0) --//Adjusts the size of the green Frame
  162. end)
  163. end
  164. -- -----------------------------------------------------------------------------------
  165. function createESP(c) --//Checks and calls the proper function
  166. bugfix = c:WaitForChild("Head") --// *Used so the children of the character arent nil.
  167. for i,v in pairs(c:GetChildren()) do
  168. if checkPart(v) then
  169. actualESP(v)
  170. end
  171. end
  172. if HEALTHBAR_ACTIVATED then --//If the user decided to
  173. createHealthbar(c:WaitForChild("HumanoidRootPart")) --//Calls the function of the creation
  174. end
  175. end
  176. -- -----------------------------------------------------------------------------------
  177. for i,people in pairs(players:GetChildren())do
  178. if people ~= players.LocalPlayer then
  179. currentPlayer = people
  180. --//Used for Players already in the Game
  181. createESP(people.Character)
  182. people.CharacterAdded:Connect(function(character)
  183. createESP(character)
  184. end)
  185. end
  186. end
  187. -- -----------------------------------------------------------------------------------
  188. end --//End of the entire function
  189.  
  190. createFlex() --// Does exactly that :)
  191. end)
  192.  
  193. aimbot.Name = "aimbot"
  194. aimbot.Parent = fpsframe
  195. aimbot.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  196. aimbot.BackgroundTransparency = 0.5
  197. aimbot.BorderSizePixel = 3
  198. aimbot.Position = UDim2.new(0.0325757265, 0, 0.423076987, 0)
  199. aimbot.Size = UDim2.new(0, 71, 0, 55)
  200. aimbot.Font = Enum.Font.SourceSans
  201. aimbot.Text = "Aimbot"
  202. aimbot.TextColor3 = Color3.new(0, 0, 0)
  203. aimbot.TextScaled = true
  204. aimbot.TextSize = 14
  205. aimbot.TextWrapped = true
  206. aimbot.MouseButton1Down:connect(function()
  207. loadstring(game:GetObjects('rbxassetid://340856112')[1].Source)()
  208.  
  209. wait()
  210.  
  211. _G.FREE_FOR_ALL = true
  212.  
  213. _G.BIND = 50 -- LEFT CTRL
  214. _G.ESP_BIND = 52 -- LEFT ALT
  215. end)
  216.  
  217. ctrlclickdel.Name = "ctrlclickdel"
  218. ctrlclickdel.Parent = fpsframe
  219. ctrlclickdel.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  220. ctrlclickdel.BackgroundTransparency = 0.5
  221. ctrlclickdel.BorderSizePixel = 3
  222. ctrlclickdel.Position = UDim2.new(0.683988988, 0, 0.421613753, 0)
  223. ctrlclickdel.Size = UDim2.new(0, 71, 0, 55)
  224. ctrlclickdel.Font = Enum.Font.SourceSans
  225. ctrlclickdel.Text = "CTRL CLICK Delete"
  226. ctrlclickdel.TextColor3 = Color3.new(0, 0, 0)
  227. ctrlclickdel.TextScaled = true
  228. ctrlclickdel.TextSize = 14
  229. ctrlclickdel.TextWrapped = true
  230. ctrlclickdel.MouseButton1Down:connect(function()
  231. local Plr = game:GetService("Players").LocalPlayer
  232. local Mouse = Plr:GetMouse()
  233.  
  234. Mouse.Button1Down:connect(function()
  235. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  236. if not Mouse.Target then return end
  237. Mouse.Target:Destroy()
  238. end)
  239. end)
  240.  
  241. infjump.Name = "infjump"
  242. infjump.Parent = fpsframe
  243. infjump.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  244. infjump.BackgroundTransparency = 0.5
  245. infjump.BorderSizePixel = 3
  246. infjump.Position = UDim2.new(0.033378765, 0, 0.21132949, 0)
  247. infjump.Size = UDim2.new(0, 71, 0, 55)
  248. infjump.Font = Enum.Font.SourceSans
  249. infjump.Text = "Infinite Jump"
  250. infjump.TextColor3 = Color3.new(0, 0, 0)
  251. infjump.TextScaled = true
  252. infjump.TextSize = 14
  253. infjump.TextWrapped = true
  254. infjump.MouseButton1Down:connect(function()
  255. local Player = game:GetService'Players'.LocalPlayer;
  256. local UIS = game:GetService'UserInputService';
  257.  
  258. _G.JumpHeight = 50;
  259.  
  260. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  261.  
  262. UIS.InputBegan:connect(function(UserInput)
  263. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  264. Action(Player.Character.Humanoid, function(self)
  265. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  266. Action(self.Parent.HumanoidRootPart, function(self)
  267. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  268. end)
  269. end
  270. end)
  271. end
  272. end)
  273. end)
  274.  
  275. noc.Name = "noc"
  276. noc.Parent = fpsframe
  277. noc.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  278. noc.BackgroundTransparency = 0.5
  279. noc.BorderSizePixel = 3
  280. noc.Position = UDim2.new(0.684114039, 0, 0.208403081, 0)
  281. noc.Size = UDim2.new(0, 71, 0, 55)
  282. noc.Font = Enum.Font.SourceSans
  283. noc.Text = "Noclip"
  284. noc.TextColor3 = Color3.new(0, 0, 0)
  285. noc.TextScaled = true
  286. noc.TextSize = 14
  287. noc.TextWrapped = true
  288. noc.MouseButton1Down:connect(function()
  289. noclip = false
  290. game:GetService('RunService').Stepped:connect(function()
  291. if noclip then
  292. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  293. end
  294. end)
  295. plr = game.Players.LocalPlayer
  296. mouse = plr:GetMouse()
  297. mouse.KeyDown:connect(function(key)
  298.  
  299. if key == "e" then
  300. noclip = not noclip
  301. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  302. end
  303. end)
  304. print('Loaded')
  305. print('Press "E" to noclip')
  306. end)
  307.  
  308. brokem.Name = "brokem"
  309. brokem.Parent = fpsframe
  310. brokem.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  311. brokem.BackgroundTransparency = 0.5
  312. brokem.BorderSizePixel = 3
  313. brokem.Position = UDim2.new(0.36413604, 0, 0.423076928, 0)
  314. brokem.Size = UDim2.new(0, 71, 0, 55)
  315. brokem.Font = Enum.Font.SourceSans
  316. brokem.Text = "Broken"
  317. brokem.TextColor3 = Color3.new(0, 0, 0)
  318. brokem.TextScaled = true
  319. brokem.TextSize = 14
  320. brokem.TextWrapped = true
  321.  
  322. empty.Name = "empty"
  323. empty.Parent = fpsframe
  324. empty.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  325. empty.BackgroundTransparency = 0.5
  326. empty.BorderSizePixel = 3
  327. empty.Position = UDim2.new(0.683016419, 0, 0.632107019, 0)
  328. empty.Size = UDim2.new(0, 71, 0, 55)
  329. empty.Font = Enum.Font.SourceSans
  330. empty.Text = "Empty"
  331. empty.TextColor3 = Color3.new(0, 0, 0)
  332. empty.TextScaled = true
  333. empty.TextSize = 14
  334. empty.TextWrapped = true
  335.  
  336. empty_2.Name = "empty"
  337. empty_2.Parent = fpsframe
  338. empty_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  339. empty_2.BackgroundTransparency = 0.5
  340. empty_2.BorderSizePixel = 3
  341. empty_2.Position = UDim2.new(0.363458067, 0, 0.632107019, 0)
  342. empty_2.Size = UDim2.new(0, 71, 0, 55)
  343. empty_2.Font = Enum.Font.SourceSans
  344. empty_2.Text = "Empty"
  345. empty_2.TextColor3 = Color3.new(0, 0, 0)
  346. empty_2.TextScaled = true
  347. empty_2.TextSize = 14
  348. empty_2.TextWrapped = true
  349.  
  350. brokem_2.Name = "brokem"
  351. brokem_2.Parent = fpsframe
  352. brokem_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  353. brokem_2.BackgroundTransparency = 0.5
  354. brokem_2.BorderSizePixel = 3
  355. brokem_2.Position = UDim2.new(0.367812514, 0, 0.210911363, 0)
  356. brokem_2.Size = UDim2.new(0, 71, 0, 55)
  357. brokem_2.Font = Enum.Font.SourceSans
  358. brokem_2.Text = "Broken"
  359. brokem_2.TextColor3 = Color3.new(0, 0, 0)
  360. brokem_2.TextScaled = true
  361. brokem_2.TextSize = 14
  362. brokem_2.TextWrapped = true
  363.  
  364. esp_2.Name = "esp"
  365. esp_2.Parent = fpsframe
  366. esp_2.BackgroundColor3 = Color3.new(0.12549, 0.176471, 0.117647)
  367. esp_2.BackgroundTransparency = 0.5
  368. esp_2.BorderSizePixel = 3
  369. esp_2.Position = UDim2.new(0.0325756073, 0, 0.820025086, 0)
  370. esp_2.Size = UDim2.new(0, 248, 0, 55)
  371. esp_2.Font = Enum.Font.SourceSans
  372. esp_2.Text = "destroy"
  373. esp_2.TextColor3 = Color3.new(0, 0, 0)
  374. esp_2.TextScaled = true
  375. esp_2.TextSize = 14
  376. esp_2.TextWrapped = true
  377. esp_2.MouseButton1Down:connect(function()
  378. fpsframe.Visible = false
  379.  
  380. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement