gluxiisbad123

sdwadsdawdas

Aug 2nd, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.20 KB | None | 0 0
  1. local injectgui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local UICorner = Instance.new("UICorner")
  4. local TextLabel = Instance.new("TextLabel")
  5. local TextLabel_2 = Instance.new("TextLabel")
  6. local TextLabel_3 = Instance.new("TextLabel")
  7. local inject = Instance.new("TextButton")
  8. local bypass = Instance.new("TextButton")
  9. local close = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. injectgui.Name = "inject gui"
  14. injectgui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. injectgui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = injectgui
  18. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. Frame.Position = UDim2.new(0.32911393, 0, 0.382822096, 0)
  20. Frame.Size = UDim2.new(0, 635, 0, 394)
  21.  
  22. UICorner.Parent = Frame
  23.  
  24. TextLabel.Parent = Frame
  25. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  26. TextLabel.Size = UDim2.new(0, 635, 0, 50)
  27. TextLabel.Font = Enum.Font.SourceSans
  28. TextLabel.Text = "Pet Sim X"
  29. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. TextLabel.TextScaled = true
  31. TextLabel.TextSize = 14.000
  32. TextLabel.TextWrapped = true
  33.  
  34. TextLabel_2.Parent = Frame
  35. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. TextLabel_2.BackgroundTransparency = 1.000
  37. TextLabel_2.Position = UDim2.new(0.341732293, 0, 0.177664965, 0)
  38. TextLabel_2.Size = UDim2.new(0, 200, 0, 50)
  39. TextLabel_2.Font = Enum.Font.SourceSans
  40. TextLabel_2.Text = "Status"
  41. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. TextLabel_2.TextScaled = true
  43. TextLabel_2.TextSize = 14.000
  44. TextLabel_2.TextWrapped = true
  45.  
  46. TextLabel_3.Parent = Frame
  47. TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  48. TextLabel_3.Position = UDim2.new(0.354330719, 0, 0.347715735, 0)
  49. TextLabel_3.Size = UDim2.new(0, 200, 0, 50)
  50. TextLabel_3.Font = Enum.Font.SourceSans
  51. TextLabel_3.Text = "Undetected :)"
  52. TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  53. TextLabel_3.TextScaled = true
  54. TextLabel_3.TextSize = 14.000
  55. TextLabel_3.TextWrapped = true
  56.  
  57. inject.Name = "inject"
  58. inject.Parent = Frame
  59. inject.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  60. inject.Position = UDim2.new(0.354330719, 0, 0.814720809, 0)
  61. inject.Size = UDim2.new(0, 200, 0, 50)
  62. inject.Font = Enum.Font.SourceSans
  63. inject.Text = "Inject"
  64. inject.TextColor3 = Color3.fromRGB(0, 0, 0)
  65. inject.TextScaled = true
  66. inject.TextSize = 14.000
  67. inject.TextWrapped = true
  68.  
  69. bypass.Name = "bypass"
  70. bypass.Parent = Frame
  71. bypass.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  72. bypass.Position = UDim2.new(0.354330719, 0, 0.637055814, 0)
  73. bypass.Size = UDim2.new(0, 200, 0, 50)
  74. bypass.Font = Enum.Font.SourceSans
  75. bypass.Text = "Click To Run bypass"
  76. bypass.TextColor3 = Color3.fromRGB(0, 0, 0)
  77. bypass.TextSize = 14.000
  78.  
  79. close.Name = "close"
  80. close.Parent = Frame
  81. close.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  82. close.Position = UDim2.new(0.903936982, 0, 0, 0)
  83. close.Size = UDim2.new(0, 61, 0, 50)
  84. close.Font = Enum.Font.SourceSans
  85. close.Text = "X"
  86. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  87. close.TextScaled = true
  88. close.TextSize = 14.000
  89. close.TextWrapped = true
  90.  
  91. -- Scripts:
  92.  
  93. local function LPQAN_fake_script() -- Frame.LocalScript
  94. local script = Instance.new('LocalScript', Frame)
  95.  
  96. local UIS = game:GetService('UserInputService')
  97. local frame = script.Parent
  98. local dragToggle = nil
  99. local dragSpeed = 0.25
  100. local dragStart = nil
  101. local startPos = nil
  102.  
  103. local function updateInput(input)
  104. local delta = input.Position - dragStart
  105. local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
  106. startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  107. game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
  108. end
  109.  
  110. frame.InputBegan:Connect(function(input)
  111. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  112. dragToggle = true
  113. dragStart = input.Position
  114. startPos = frame.Position
  115. input.Changed:Connect(function()
  116. if input.UserInputState == Enum.UserInputState.End then
  117. dragToggle = false
  118. end
  119. end)
  120. end
  121. end)
  122.  
  123. UIS.InputChanged:Connect(function(input)
  124. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  125. if dragToggle then
  126. updateInput(input)
  127. end
  128. end
  129. end)
  130. end
  131. coroutine.wrap(LPQAN_fake_script)()
  132. local function CTFOVH_fake_script() -- inject.LocalScript
  133. local script = Instance.new('LocalScript', inject)
  134.  
  135. inject.MouseButton1Down:connect(function()
  136. -- Gui to Lua
  137. -- Version: 3.2
  138.  
  139. -- Instances:
  140.  
  141. local ScreenGui = Instance.new("ScreenGui")
  142. local Frame = Instance.new("Frame")
  143. local Frame_2 = Instance.new("Frame")
  144. local UICorner = Instance.new("UICorner")
  145. local farm = Instance.new("TextButton")
  146. local UICorner_2 = Instance.new("UICorner")
  147. local anti = Instance.new("TextButton")
  148. local UICorner_3 = Instance.new("UICorner")
  149. local maintp = Instance.new("TextButton")
  150. local UICorner_4 = Instance.new("UICorner")
  151. local best = Instance.new("TextButton")
  152. local UICorner_5 = Instance.new("UICorner")
  153. local speed = Instance.new("TextButton")
  154. local UICorner_6 = Instance.new("UICorner")
  155. local click = Instance.new("TextButton")
  156. local UICorner_7 = Instance.new("UICorner")
  157. local madeby = Instance.new("TextLabel")
  158. local TextLabel = Instance.new("TextLabel")
  159. local close = Instance.new("TextButton")
  160. local UICorner_8 = Instance.new("UICorner")
  161. local UICorner_9 = Instance.new("UICorner")
  162.  
  163. --Properties:
  164.  
  165. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  166. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  167.  
  168. Frame.Parent = ScreenGui
  169. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  170. Frame.Position = UDim2.new(0.199553236, 0, 0.226993859, 0)
  171. Frame.Size = UDim2.new(0, 615, 0, 503)
  172.  
  173. Frame_2.Parent = Frame
  174. Frame_2.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  175. Frame_2.Size = UDim2.new(0, 604, 0, 49)
  176.  
  177. UICorner.Parent = Frame_2
  178.  
  179. farm.Name = "farm"
  180. farm.Parent = Frame
  181. farm.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  182. farm.BorderColor3 = Color3.fromRGB(255, 0, 0)
  183. farm.BorderSizePixel = 3
  184. farm.Position = UDim2.new(0.129420087, 0, 0.25965634, 0)
  185. farm.Size = UDim2.new(0, 200, 0, 50)
  186. farm.Font = Enum.Font.SourceSans
  187. farm.Text = "Auto Farm "
  188. farm.TextColor3 = Color3.fromRGB(0, 0, 0)
  189. farm.TextSize = 14.000
  190.  
  191. UICorner_2.Parent = farm
  192.  
  193. anti.Name = "anti"
  194. anti.Parent = Frame
  195. anti.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  196. anti.BorderColor3 = Color3.fromRGB(255, 0, 0)
  197. anti.BorderSizePixel = 3
  198. anti.Position = UDim2.new(0.515212178, 0, 0.25965634, 0)
  199. anti.Size = UDim2.new(0, 200, 0, 50)
  200. anti.Font = Enum.Font.SourceSans
  201. anti.Text = "AntiAfk"
  202. anti.TextColor3 = Color3.fromRGB(0, 0, 0)
  203. anti.TextSize = 14.000
  204.  
  205. UICorner_3.Parent = anti
  206.  
  207. maintp.Name = "maintp"
  208. maintp.Parent = Frame
  209. maintp.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  210. maintp.BorderColor3 = Color3.fromRGB(255, 0, 0)
  211. maintp.BorderSizePixel = 3
  212. maintp.Position = UDim2.new(0.117010757, 0, 0.480332255, 0)
  213. maintp.Size = UDim2.new(0, 200, 0, 50)
  214. maintp.Font = Enum.Font.SourceSans
  215. maintp.Text = "Tp To Spawn"
  216. maintp.TextColor3 = Color3.fromRGB(0, 0, 0)
  217. maintp.TextSize = 14.000
  218.  
  219. UICorner_4.Parent = maintp
  220.  
  221. best.Name = "best"
  222. best.Parent = Frame
  223. best.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  224. best.BorderColor3 = Color3.fromRGB(255, 0, 0)
  225. best.BorderSizePixel = 3
  226. best.Position = UDim2.new(0.118037976, 0, 0.715463221, 0)
  227. best.Size = UDim2.new(0, 200, 0, 50)
  228. best.Font = Enum.Font.SourceSans
  229. best.Text = "Go To Best Area"
  230. best.TextColor3 = Color3.fromRGB(0, 0, 0)
  231. best.TextSize = 14.000
  232.  
  233. UICorner_5.Parent = best
  234.  
  235. speed.Name = "speed"
  236. speed.Parent = Frame
  237. speed.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  238. speed.BorderColor3 = Color3.fromRGB(255, 0, 0)
  239. speed.BorderSizePixel = 3
  240. speed.Position = UDim2.new(0.513586164, 0, 0.480870724, 0)
  241. speed.Size = UDim2.new(0, 200, 0, 50)
  242. speed.Font = Enum.Font.SourceSans
  243. speed.Text = "Speed/Jump script"
  244. speed.TextColor3 = Color3.fromRGB(0, 0, 0)
  245. speed.TextSize = 14.000
  246.  
  247. UICorner_6.Parent = speed
  248.  
  249. click.Name = "click"
  250. click.Parent = Frame
  251. click.BackgroundColor3 = Color3.fromRGB(255, 0, 255)
  252. click.BorderColor3 = Color3.fromRGB(255, 0, 0)
  253. click.BorderSizePixel = 3
  254. click.Position = UDim2.new(0.513758719, 0, 0.715463221, 0)
  255. click.Size = UDim2.new(0, 200, 0, 50)
  256. click.Font = Enum.Font.SourceSans
  257. click.Text = "click to tp"
  258. click.TextColor3 = Color3.fromRGB(0, 0, 0)
  259. click.TextSize = 14.000
  260.  
  261. UICorner_7.Parent = click
  262.  
  263. madeby.Name = "made by"
  264. madeby.Parent = Frame
  265. madeby.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  266. madeby.BackgroundTransparency = 1.000
  267. madeby.Position = UDim2.new(0.334724396, 0, 0, 0)
  268. madeby.Size = UDim2.new(0, 200, 0, 50)
  269. madeby.Font = Enum.Font.SourceSans
  270. madeby.Text = "Made By IcePlayz"
  271. madeby.TextColor3 = Color3.fromRGB(0, 0, 0)
  272. madeby.TextScaled = true
  273. madeby.TextSize = 14.000
  274. madeby.TextWrapped = true
  275.  
  276. TextLabel.Parent = Frame
  277. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  278. TextLabel.BackgroundTransparency = 1.000
  279. TextLabel.Position = UDim2.new(0.238485843, 0, 0.118000329, 0)
  280. TextLabel.Size = UDim2.new(0, 320, 0, 50)
  281. TextLabel.Font = Enum.Font.SourceSans
  282. TextLabel.Text = "Pet Sim X"
  283. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  284. TextLabel.TextScaled = true
  285. TextLabel.TextSize = 14.000
  286. TextLabel.TextWrapped = true
  287.  
  288. close.Name = "close"
  289. close.Parent = Frame
  290. close.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  291. close.Position = UDim2.new(0.920732737, 0, -0.00198807148, 0)
  292. close.Size = UDim2.new(0, 48, 0, 50)
  293. close.Font = Enum.Font.SourceSans
  294. close.Text = "X"
  295. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  296. close.TextScaled = true
  297. close.TextSize = 14.000
  298. close.TextWrapped = true
  299.  
  300. UICorner_8.Parent = close
  301.  
  302. UICorner_9.Parent = Frame
  303.  
  304. -- Scripts:
  305.  
  306. local function ZRCF_fake_script() -- farm.LocalScript
  307. local script = Instance.new('LocalScript', farm)
  308.  
  309. farm.MouseButton1Down:connect(function()
  310. getgenv().speed=150
  311. for i,v in pairs(getconnections(game.Players.LocalPlayer.Idled)) do v:Disable() end
  312. loadstring(game:HttpGet("https://raw.githubusercontent.com/inceldom/scrip/main/petsimsex",true))()
  313. end)
  314.  
  315. end
  316. coroutine.wrap(ZRCF_fake_script)()
  317. local function OYLNEXC_fake_script() -- anti.LocalScript
  318. local script = Instance.new('LocalScript', anti)
  319.  
  320. anti.MouseButton1Down:connect(function()
  321. wait(0.5)local ba=Instance.new("ScreenGui")
  322. local ca=Instance.new("TextLabel")local da=Instance.new("Frame")
  323. local _b=Instance.new("TextLabel")local ab=Instance.new("TextLabel")ba.Parent=game.CoreGui
  324. ba.ZIndexBehavior=Enum.ZIndexBehavior.Sibling;ca.Parent=ba;ca.Active=true
  325. ca.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ca.Draggable=true
  326. ca.Position=UDim2.new(0.698610067,0,0.098096624,0)ca.Size=UDim2.new(0,370,0,52)
  327. ca.Font=Enum.Font.SourceSansSemibold;ca.Text="Anti Afk"ca.TextColor3=Color3.new(0,1,1)
  328. ca.TextSize=22;da.Parent=ca
  329. da.BackgroundColor3=Color3.new(0.196078,0.196078,0.196078)da.Position=UDim2.new(0,0,1.0192306,0)
  330. da.Size=UDim2.new(0,370,0,107)_b.Parent=da
  331. _b.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)_b.Position=UDim2.new(0,0,0.800455689,0)
  332. _b.Size=UDim2.new(0,370,0,21)_b.Font=Enum.Font.Arial;_b.Text="Made by Headshot#5868"
  333. _b.TextColor3=Color3.new(0,1,1)_b.TextSize=20;ab.Parent=da
  334. ab.BackgroundColor3=Color3.new(0.176471,0.176471,0.176471)ab.Position=UDim2.new(0,0,0.158377,0)
  335. ab.Size=UDim2.new(0,370,0,44)ab.Font=Enum.Font.ArialBold;ab.Text="Status: Active"
  336. ab.TextColor3=Color3.new(0,1,1)ab.TextSize=20;local bb=game:service'VirtualUser'
  337. game:service'Players'.LocalPlayer.Idled:connect(function()
  338. bb:CaptureController()bb:ClickButton2(Vector2.new())
  339. ab.Text="Roblox kicked you but we didnt let them!"wait(2)ab.Text="Status : Active"end)
  340. end)
  341. end
  342. coroutine.wrap(OYLNEXC_fake_script)()
  343. local function FPXCR_fake_script() -- maintp.LocalScript
  344. local script = Instance.new('LocalScript', maintp)
  345.  
  346. maintp.MouseButton1Down:connect(function()
  347. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(266.96402, 95.0130005, 238.074982, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  348. end)
  349.  
  350. end
  351. coroutine.wrap(FPXCR_fake_script)()
  352. local function AABN_fake_script() -- best.LocalScript
  353. local script = Instance.new('LocalScript', best)
  354.  
  355. best.MouseButton1Down:connect(function()
  356. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2424.03613, 91.0130005, 238.074982, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  357. end)
  358. end
  359. coroutine.wrap(AABN_fake_script)()
  360. local function LLZZ_fake_script() -- speed.LocalScript
  361. local script = Instance.new('LocalScript', speed)
  362.  
  363. speed.MouseButton1Down:connect(function()
  364. -- Simple
  365. -- by isaraw8912
  366.  
  367. -- INSTRUCTIONS !!!
  368.  
  369. -- Press F to Fly
  370. -- Press E to NoClip
  371. -- Click TP Hotkey : CTRL
  372. -- Press R to uninfinite jump
  373.  
  374. -- prints
  375.  
  376. print("Thank you for using Simple")
  377.  
  378. -- Notification - Loaded |
  379.  
  380. game:GetService("StarterGui"):SetCore("SendNotification",{
  381. Title = "Simple";
  382. Text = "Made by isaraw8912";
  383. })
  384.  
  385. -- Instances:
  386.  
  387. local Simple = Instance.new("ScreenGui")
  388. local main = Instance.new("Frame")
  389. local noclip = Instance.new("TextButton")
  390. local clicktp = Instance.new("TextButton")
  391. local tpto = Instance.new("TextButton")
  392. local infjump = Instance.new("TextButton")
  393. local btools = Instance.new("TextButton")
  394. local jumppower = Instance.new("TextButton")
  395. local jpframe = Instance.new("Frame")
  396. local jpinput = Instance.new("TextBox")
  397. local setjp = Instance.new("TextButton")
  398. local rejp = Instance.new("TextButton")
  399. local title = Instance.new("TextLabel")
  400. local walkspeed = Instance.new("TextButton")
  401. local wsframe = Instance.new("Frame")
  402. local wsinput = Instance.new("TextBox")
  403. local setws = Instance.new("TextButton")
  404. local rews = Instance.new("TextButton")
  405. local close = Instance.new("TextButton")
  406. local fly = Instance.new("TextButton")
  407. local open = Instance.new("TextButton")
  408. local jpclose = Instance.new("TextButton")
  409. local wsclose = Instance.new("TextButton")
  410. local tpframe = Instance.new("Frame")
  411. local tpinput = Instance.new("TextBox")
  412. local settp = Instance.new("TextButton")
  413. local tpclose = Instance.new("TextButton")
  414.  
  415. --Properties:
  416.  
  417. Simple.Name = "Simple"
  418. Simple.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  419.  
  420. main.Name = "main"
  421. main.Parent = Simple
  422. main.Active = true
  423. main.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  424. main.Position = UDim2.new(0.382422805, 0, 0.292828679, 0)
  425. main.Size = UDim2.new(0, 349, 0, 287)
  426. main.Draggable = true
  427.  
  428. noclip.Name = "noclip"
  429. noclip.Parent = main
  430. noclip.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  431. noclip.Position = UDim2.new(0.0658583343, 0, 0.198759019, 0)
  432. noclip.Size = UDim2.new(0, 119, 0, 40)
  433. noclip.Font = Enum.Font.SourceSans
  434. noclip.Text = "NoClip"
  435. noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
  436. noclip.TextScaled = true
  437. noclip.TextSize = 14.000
  438. noclip.TextWrapped = true
  439. noclip.MouseButton1Click:Connect(function()
  440. game:GetService('RunService').Stepped:connect(function()
  441. if noclip then
  442. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  443. end
  444. end)
  445. plr = game.Players.LocalPlayer
  446. mouse = plr:GetMouse()
  447. mouse.KeyDown:connect(function(key)
  448.  
  449. if key == "e" then
  450. noclip = not noclip
  451. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  452. end
  453. end)
  454. noclip.Text = "Loaded!"
  455. noclip.TextColor3 = Color3.fromRGB(0, 255, 50)
  456. wait(2)
  457. noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
  458. noclip.Text = "NoClip"
  459. end)
  460.  
  461. clicktp.Name = "clicktp"
  462. clicktp.Parent = main
  463. clicktp.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  464. clicktp.Position = UDim2.new(0.588318229, 0, 0.198759019, 0)
  465. clicktp.Size = UDim2.new(0, 119, 0, 40)
  466. clicktp.Font = Enum.Font.SourceSans
  467. clicktp.Text = "Click TP"
  468. clicktp.TextColor3 = Color3.fromRGB(0, 0, 0)
  469. clicktp.TextScaled = true
  470. clicktp.TextSize = 14.000
  471. clicktp.TextWrapped = true
  472. clicktp.MouseButton1Click:Connect(function()
  473. noclip = false
  474. local UIS = game:GetService("UserInputService")
  475. local Player = game.Players.LocalPlayer
  476. local Mouse = Player:GetMouse()
  477.  
  478.  
  479. function GetCharacter()
  480. return game.Players.LocalPlayer.Character
  481. end
  482.  
  483. function Teleport(pos)
  484. local Char = GetCharacter()
  485. if Char then
  486. Char:MoveTo(pos)
  487. end
  488. end
  489.  
  490.  
  491. UIS.InputBegan:Connect(function(input)
  492. if input.UserInputType == Enum.UserInputType.MouseButton1 and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then
  493. Teleport(Mouse.Hit.p)
  494. end
  495. end)
  496. clicktp.Text = "Loaded!"
  497. clicktp.TextColor3 = Color3.fromRGB(0, 255, 50)
  498. wait(2)
  499. clicktp.TextColor3 = Color3.fromRGB(0, 0, 0)
  500. clicktp.Text = "Click TP"
  501. end)
  502.  
  503. tpto.Name = "tpto"
  504. tpto.Parent = main
  505. tpto.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  506. tpto.Position = UDim2.new(0.588318229, 0, 0.411871731, 0)
  507. tpto.Size = UDim2.new(0, 119, 0, 41)
  508. tpto.Font = Enum.Font.SourceSans
  509. tpto.Text = "Teleport To"
  510. tpto.TextColor3 = Color3.fromRGB(0, 0, 0)
  511. tpto.TextScaled = true
  512. tpto.TextSize = 14.000
  513. tpto.TextWrapped = true
  514. tpto.MouseButton1Click:Connect(function()
  515. tpframe.Visible = true
  516. infjump.Visible = false
  517. jumppower.Visible = false
  518. walkspeed.Visible = false
  519. btools.Visible = false
  520. fly.Visible = false
  521. end)
  522.  
  523. tpclose.Name = "tpclose"
  524. tpclose.Parent = tpframe
  525. tpclose.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  526. tpclose.Position = UDim2.new(0.92929244, 0, 0, 0)
  527. tpclose.Size = UDim2.new(0, 24, 0, 24)
  528. tpclose.Font = Enum.Font.SourceSans
  529. tpclose.Text = "X"
  530. tpclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  531. tpclose.TextScaled = true
  532. tpclose.TextSize = 14.000
  533. tpclose.TextWrapped = true
  534. tpclose.MouseButton1Click:Connect(function()
  535. tpframe.Visible = false
  536. infjump.Visible = true
  537. jumppower.Visible = true
  538. walkspeed.Visible = true
  539. btools.Visible = true
  540. fly.Visible = true
  541. end)
  542.  
  543. tpframe.Name = "tpframe"
  544. tpframe.Parent = tpto
  545. tpframe.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  546. tpframe.BorderSizePixel = 0
  547. tpframe.Position = UDim2.new(-1.72255921, 0, -1.77698445, 0)
  548. tpframe.Size = UDim2.new(0, 348, 0, 240)
  549. tpframe.Visible = false
  550.  
  551. tpinput.Name = "tpinput"
  552. tpinput.Parent = tpframe
  553. tpinput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  554. tpinput.Position = UDim2.new(0.209770113, 0, 0.174999997, 0)
  555. tpinput.Size = UDim2.new(0, 200, 0, 50)
  556. tpinput.Font = Enum.Font.SourceSans
  557. tpinput.Text = "Full Player Username"
  558. tpinput.TextColor3 = Color3.fromRGB(255, 255, 255)
  559. tpinput.TextSize = 22.000
  560.  
  561. settp.Name = "settp"
  562. settp.Parent = tpframe
  563. settp.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  564. settp.Position = UDim2.new(0.304597706, 0, 0.470833331, 0)
  565. settp.Size = UDim2.new(0, 135, 0, 50)
  566. settp.Font = Enum.Font.SourceSans
  567. settp.Text = "Teleport"
  568. settp.TextColor3 = Color3.fromRGB(85, 0, 127)
  569. settp.TextSize = 14.000
  570. settp.MouseButton1Click:Connect(function()
  571. local Victim = tpinput.Text
  572. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Victim].Character.HumanoidRootPart.CFrame
  573. settp.Text = "Teleported!"
  574. settp.TextColor3 = Color3.fromRGB(0, 255, 50)
  575. wait(2)
  576. settp.TextColor3 = Color3.fromRGB(255, 255, 255)
  577. settp.Text = "Teleport"
  578. end)
  579.  
  580. infjump.Name = "infjump"
  581. infjump.Parent = main
  582. infjump.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  583. infjump.Position = UDim2.new(0.0658583343, 0, 0.411871731, 0)
  584. infjump.Size = UDim2.new(0, 119, 0, 41)
  585. infjump.Font = Enum.Font.SourceSans
  586. infjump.Text = "Infinite Jump"
  587. infjump.TextColor3 = Color3.fromRGB(0, 0, 0)
  588. infjump.TextScaled = true
  589. infjump.TextSize = 14.000
  590. infjump.TextWrapped = true
  591. infjump.MouseButton1Click:Connect(function()
  592. loadstring(game:HttpGet("https://pastebin.com/raw/HQsQysa8", true))()
  593. infjump.Text = "Loaded!"
  594. infjump.TextColor3 = Color3.fromRGB(0, 255, 50)
  595. wait(2)
  596. infjump.TextColor3 = Color3.fromRGB(0, 0, 0)
  597. infjump.Text = "Infinite Jump"
  598. end)
  599.  
  600. btools.Name = "btools"
  601. btools.Parent = main
  602. btools.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  603. btools.Position = UDim2.new(0.588318229, 0, 0.621999919, 0)
  604. btools.Size = UDim2.new(0, 119, 0, 38)
  605. btools.Font = Enum.Font.SourceSans
  606. btools.Text = "BTools"
  607. btools.TextColor3 = Color3.fromRGB(0, 0, 0)
  608. btools.TextScaled = true
  609. btools.TextSize = 14.000
  610. btools.TextWrapped = true
  611. btools.MouseButton1Click:Connect(function()
  612. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  613. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  614. if child.ClassName == "Part" then
  615. child.Locked = false
  616. end
  617. if child.ClassName == "MeshPart" then
  618. child.Locked = false
  619. end
  620. if child.ClassName == "UnionOperation" then
  621. child.Locked = false
  622. end
  623. if child.ClassName == "Model" then
  624. for index, chil in pairs(child:GetChildren()) do
  625. if chil.ClassName == "Part" then
  626. chil.Locked = false
  627. end
  628. if chil.ClassName == "MeshPart" then
  629. chil.Locked = false
  630. end
  631. if chil.ClassName == "UnionOperation" then
  632. chil.Locked = false
  633. end
  634. if chil.ClassName == "Model" then
  635. for index, childe in pairs(chil:GetChildren()) do
  636. if childe.ClassName == "Part" then
  637. childe.Locked = false
  638. end
  639. if childe.ClassName == "MeshPart" then
  640. childe.Locked = false
  641. end
  642. if childe.ClassName == "UnionOperation" then
  643. childe.Locked = false
  644. end
  645. if childe.ClassName == "Model" then
  646. for index, childeo in pairs(childe:GetChildren()) do
  647. if childeo.ClassName == "Part" then
  648. childeo.Locked = false
  649. end
  650. if childeo.ClassName == "MeshPart" then
  651. childeo.Locked = false
  652. end
  653. if childeo.ClassName == "UnionOperation" then
  654. childeo.Locked = false
  655. end
  656. if childeo.ClassName == "Model" then
  657. end
  658. end
  659. end
  660. end
  661. end
  662. end
  663. end
  664. end
  665. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  666. c.BinType = Enum.BinType.Hammer
  667. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  668. c.BinType = Enum.BinType.Clone
  669. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  670. c.BinType = Enum.BinType.Grab
  671. btools.Text = "Loaded!"
  672. btools.TextColor3 = Color3.fromRGB(0, 255, 50)
  673. wait(2)
  674. btools.TextColor3 = Color3.fromRGB(0, 0, 0)
  675. btools.Text = "BTools"
  676. end)
  677.  
  678. jumppower.Name = "jumppower"
  679. jumppower.Parent = main
  680. jumppower.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  681. jumppower.Position = UDim2.new(0.0658583343, 0, 0.621999919, 0)
  682. jumppower.Size = UDim2.new(0, 119, 0, 42)
  683. jumppower.Font = Enum.Font.SourceSans
  684. jumppower.Text = "Jump Power"
  685. jumppower.TextColor3 = Color3.fromRGB(0, 0, 0)
  686. jumppower.TextScaled = true
  687. jumppower.TextSize = 14.000
  688. jumppower.TextWrapped = true
  689. jumppower.MouseButton1Click:Connect(function()
  690. jpframe.Visible = true
  691. walkspeed.Visible = false
  692. fly.Visible = false
  693. end)
  694.  
  695. jpframe.Name = "jpframe"
  696. jpframe.Parent = jumppower
  697. jpframe.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  698. jpframe.BorderSizePixel = 0
  699. jpframe.Position = UDim2.new(-0.19314754, 0, -3.15096831, 0)
  700. jpframe.Size = UDim2.new(0, 348, 0, 240)
  701. jpframe.Visible = false
  702.  
  703. jpclose.Name = "jpclose"
  704. jpclose.Parent = jpframe
  705. jpclose.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  706. jpclose.Position = UDim2.new(0.92929244, 0, 0, 0)
  707. jpclose.Size = UDim2.new(0, 24, 0, 24)
  708. jpclose.Font = Enum.Font.SourceSans
  709. jpclose.Text = "X"
  710. jpclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  711. jpclose.TextScaled = true
  712. jpclose.TextSize = 14.000
  713. jpclose.TextWrapped = true
  714. jpclose.MouseButton1Click:Connect(function()
  715. walkspeed.Visible = true
  716. fly.Visible = true
  717. jpframe.Visible = false
  718. end)
  719.  
  720. jpinput.Name = "jpinput"
  721. jpinput.Parent = jpframe
  722. jpinput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  723. jpinput.Position = UDim2.new(0.209770113, 0, 0.174999997, 0)
  724. jpinput.Size = UDim2.new(0, 200, 0, 50)
  725. jpinput.Font = Enum.Font.SourceSans
  726. jpinput.Text = "Power Value"
  727. jpinput.TextColor3 = Color3.fromRGB(255, 255, 255)
  728. jpinput.TextSize = 22.000
  729.  
  730. setjp.Name = "setjp"
  731. setjp.Parent = jpframe
  732. setjp.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  733. setjp.Position = UDim2.new(0.0632183924, 0, 0.470833331, 0)
  734. setjp.Size = UDim2.new(0, 135, 0, 50)
  735. setjp.Font = Enum.Font.SourceSans
  736. setjp.Text = "Set Jump Power"
  737. setjp.TextColor3 = Color3.fromRGB(85, 0, 127)
  738. setjp.TextSize = 14.000
  739. setjp.MouseButton1Click:Connect(function()
  740. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jpinput.Text
  741. end)
  742.  
  743. rejp.Name = "rejp"
  744. rejp.Parent = jpframe
  745. rejp.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  746. rejp.Position = UDim2.new(0.537356317, 0, 0.470833331, 0)
  747. rejp.Size = UDim2.new(0, 136, 0, 50)
  748. rejp.Font = Enum.Font.SourceSans
  749. rejp.Text = "Reset Jump Power"
  750. rejp.TextColor3 = Color3.fromRGB(85, 0, 127)
  751. rejp.TextSize = 14.000
  752. rejp.MouseButton1Click:Connect(function()
  753. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  754. end)
  755.  
  756. title.Name = "title"
  757. title.Parent = main
  758. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  759. title.BackgroundTransparency = 1.000
  760. title.Position = UDim2.new(0.211408243, 0, -0.00288046151, 0)
  761. title.Size = UDim2.new(0, 200, 0, 47)
  762. title.Font = Enum.Font.Highway
  763. title.Text = "Simple"
  764. title.TextColor3 = Color3.fromRGB(0, 255, 255)
  765. title.TextScaled = true
  766. title.TextSize = 14.000
  767. title.TextWrapped = true
  768.  
  769. walkspeed.Name = "walkspeed"
  770. walkspeed.Parent = main
  771. walkspeed.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  772. walkspeed.Position = UDim2.new(0.0658583343, 0, 0.817121804, 0)
  773. walkspeed.Size = UDim2.new(0, 119, 0, 42)
  774. walkspeed.Font = Enum.Font.SourceSans
  775. walkspeed.Text = "Walk Speed"
  776. walkspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  777. walkspeed.TextScaled = true
  778. walkspeed.TextSize = 14.000
  779. walkspeed.TextWrapped = true
  780. walkspeed.MouseButton1Click:Connect(function()
  781. wsframe.Visible = true
  782. fly.Visible = false
  783. end)
  784.  
  785. wsframe.Name = "wsframe"
  786. wsframe.Parent = walkspeed
  787. wsframe.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  788. wsframe.BorderSizePixel = 0
  789. wsframe.Position = UDim2.new(-0.201550901, 0, -4.48430157, 0)
  790. wsframe.Size = UDim2.new(0, 348, 0, 240)
  791. wsframe.Visible = false
  792.  
  793. wsclose.Name = "wsclose"
  794. wsclose.Parent = wsframe
  795. wsclose.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  796. wsclose.Position = UDim2.new(0.92929244, 0, 0, 0)
  797. wsclose.Size = UDim2.new(0, 24, 0, 24)
  798. wsclose.Font = Enum.Font.SourceSans
  799. wsclose.Text = "X"
  800. wsclose.TextColor3 = Color3.fromRGB(255, 255, 255)
  801. wsclose.TextScaled = true
  802. wsclose.TextSize = 14.000
  803. wsclose.TextWrapped = true
  804. wsclose.MouseButton1Click:Connect(function()
  805. wsframe.Visible = false
  806. fly.Visible = true
  807. end)
  808.  
  809. wsinput.Name = "wsinput"
  810. wsinput.Parent = wsframe
  811. wsinput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  812. wsinput.Position = UDim2.new(0.209770113, 0, 0.174999997, 0)
  813. wsinput.Size = UDim2.new(0, 200, 0, 50)
  814. wsinput.Font = Enum.Font.SourceSans
  815. wsinput.Text = "Speed Value"
  816. wsinput.TextColor3 = Color3.fromRGB(255, 255, 255)
  817. wsinput.TextSize = 22.000
  818.  
  819. setws.Name = "setws"
  820. setws.Parent = wsframe
  821. setws.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  822. setws.Position = UDim2.new(0.0632183924, 0, 0.470833331, 0)
  823. setws.Size = UDim2.new(0, 135, 0, 50)
  824. setws.Font = Enum.Font.SourceSans
  825. setws.Text = "Set Walk Speed"
  826. setws.TextColor3 = Color3.fromRGB(85, 0, 127)
  827. setws.TextSize = 14.000
  828. setws.MouseButton1Click:Connect(function()
  829. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = wsinput.Text
  830. end)
  831.  
  832. rews.Name = "rews"
  833. rews.Parent = wsframe
  834. rews.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  835. rews.Position = UDim2.new(0.537356317, 0, 0.470833331, 0)
  836. rews.Size = UDim2.new(0, 136, 0, 50)
  837. rews.Font = Enum.Font.SourceSans
  838. rews.Text = "Reset Walk Speed"
  839. rews.TextColor3 = Color3.fromRGB(85, 0, 127)
  840. rews.TextSize = 14.000
  841. rews.MouseButton1Click:Connect(function()
  842. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  843. end)
  844.  
  845. close.Name = "close"
  846. close.Parent = main
  847. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  848. close.Position = UDim2.new(0.92929244, 0, 0, 0)
  849. close.Size = UDim2.new(0, 24, 0, 24)
  850. close.Font = Enum.Font.SourceSans
  851. close.Text = "X"
  852. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  853. close.TextScaled = true
  854. close.TextSize = 14.000
  855. close.TextWrapped = true
  856. close.MouseButton1Click:Connect(function()
  857. main.Visible = false
  858. open.Visible = true
  859. end)
  860.  
  861. fly.Name = "fly"
  862. fly.Parent = main
  863. fly.BackgroundColor3 = Color3.fromRGB(170, 170, 255)
  864. fly.Position = UDim2.new(0.587348342, 0, 0.817121804, 0)
  865. fly.Size = UDim2.new(0, 119, 0, 42)
  866. fly.Font = Enum.Font.SourceSans
  867. fly.Text = "Fly"
  868. fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  869. fly.TextScaled = true
  870. fly.TextSize = 14.000
  871. fly.TextWrapped = true
  872. fly.MouseButton1Click:Connect(function()
  873. repeat wait()
  874. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  875. local mouse = game.Players.LocalPlayer:GetMouse()
  876. repeat wait() until mouse
  877. local plr = game.Players.LocalPlayer
  878. local torso = plr.Character.Head
  879. local flying = false
  880. local deb = true
  881. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  882. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  883. local maxspeed = 400
  884. local speed = 5000
  885.  
  886. function Fly()
  887. local bg = Instance.new("BodyGyro", torso)
  888. bg.P = 9e4
  889. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  890. bg.cframe = torso.CFrame
  891. local bv = Instance.new("BodyVelocity", torso)
  892. bv.velocity = Vector3.new(0,0.1,0)
  893. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  894. repeat wait()
  895. plr.Character.Humanoid.PlatformStand = true
  896. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  897. speed = speed+.5+(speed/maxspeed)
  898. if speed > maxspeed then
  899. speed = maxspeed
  900. end
  901. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  902. speed = speed-1
  903. if speed < 0 then
  904. speed = 0
  905. end
  906. end
  907. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  908. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  909. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  910. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  911. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  912. else
  913. bv.velocity = Vector3.new(0,0.1,0)
  914. end
  915. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  916. until not flying
  917. ctrl = {f = 0, b = 0, l = 0, r = 0}
  918. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  919. speed = 0
  920. bg:Destroy()
  921. bv:Destroy()
  922. plr.Character.Humanoid.PlatformStand = false
  923. end
  924. mouse.KeyDown:connect(function(key)
  925. if key:lower() == "f" then
  926. if flying then flying = false
  927. else
  928. flying = true
  929. Fly()
  930. end
  931. elseif key:lower() == "w" then
  932. ctrl.f = 1
  933. elseif key:lower() == "s" then
  934. ctrl.b = -1
  935. elseif key:lower() == "a" then
  936. ctrl.l = -1
  937. elseif key:lower() == "d" then
  938. ctrl.r = 1
  939. end
  940. end)
  941. mouse.KeyUp:connect(function(key)
  942. if key:lower() == "w" then
  943. ctrl.f = 0
  944. elseif key:lower() == "s" then
  945. ctrl.b = 0
  946. elseif key:lower() == "a" then
  947. ctrl.l = 0
  948. elseif key:lower() == "d" then
  949. ctrl.r = 0
  950. end
  951. end)
  952. Fly()
  953. fly.Text = "Loaded!"
  954. fly.TextColor3 = Color3.fromRGB(0, 255, 50)
  955. wait(2)
  956. fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  957. fly.Text = "Fly"
  958. end)
  959.  
  960. open.Name = "open"
  961. open.Parent = Simple
  962. open.BackgroundColor3 = Color3.fromRGB(0, 0, 255)
  963. open.Position = UDim2.new(0, 0, 0.609974444, 0)
  964. open.Size = UDim2.new(0, 70, 0, 18)
  965. open.Visible = false
  966. open.Font = Enum.Font.SourceSans
  967. open.Text = "Open"
  968. open.TextColor3 = Color3.fromRGB(0, 255, 255)
  969. open.TextSize = 14.000
  970. open.MouseButton1Click:Connect(function()
  971. main.Visible = true
  972. open.Visible = false
  973. end)
  974. end)
  975. end
  976. coroutine.wrap(LLZZ_fake_script)()
  977. local function WGYW_fake_script() -- click.LocalScript
  978. local script = Instance.new('LocalScript', click)
  979.  
  980. click.MouseButton1Down:connect(function()
  981. mouse = game.Players.LocalPlayer:GetMouse()
  982. tool = Instance.new("Tool")
  983. tool.RequiresHandle = false
  984. tool.Name = "Click Teleport"
  985. tool.Activated:connect(function()
  986. local pos = mouse.Hit+Vector3.new(0,2.5,0)
  987. pos = CFrame.new(pos.X,pos.Y,pos.Z)
  988. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  989. end)
  990. tool.Parent = game.Players.LocalPlayer.Backpack
  991. end)
  992. end
  993. coroutine.wrap(WGYW_fake_script)()
  994. local function VXAIG_fake_script() -- Frame.LocalScript
  995. local script = Instance.new('LocalScript', Frame)
  996.  
  997. local UIS = game:GetService('UserInputService')
  998. local frame = script.Parent
  999. local dragToggle = nil
  1000. local dragSpeed = 0.25
  1001. local dragStart = nil
  1002. local startPos = nil
  1003.  
  1004. local function updateInput(input)
  1005. local delta = input.Position - dragStart
  1006. local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
  1007. startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  1008. game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
  1009. end
  1010.  
  1011. frame.InputBegan:Connect(function(input)
  1012. if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
  1013. dragToggle = true
  1014. dragStart = input.Position
  1015. startPos = frame.Position
  1016. input.Changed:Connect(function()
  1017. if input.UserInputState == Enum.UserInputState.End then
  1018. dragToggle = false
  1019. end
  1020. end)
  1021. end
  1022. end)
  1023.  
  1024. UIS.InputChanged:Connect(function(input)
  1025. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  1026. if dragToggle then
  1027. updateInput(input)
  1028. end
  1029. end
  1030. end)
  1031. end
  1032. coroutine.wrap(VXAIG_fake_script)()
  1033. local function AYXZSTP_fake_script() -- close.LocalScript
  1034. local script = Instance.new('LocalScript', close)
  1035.  
  1036. script.Parent.MouseButton1Click:Connect(function()
  1037. script.Parent.Parent.Visible = false
  1038. end)
  1039.  
  1040.  
  1041.  
  1042.  
  1043. end
  1044. coroutine.wrap(AYXZSTP_fake_script)()
  1045.  
  1046. end)
  1047. end
  1048. coroutine.wrap(CTFOVH_fake_script)()
  1049. local function RJNTMB_fake_script() -- bypass.LocalScript
  1050. local script = Instance.new('LocalScript', bypass)
  1051.  
  1052. bypass.MouseButton1Down:connect(function()
  1053. -- Gui to Lua
  1054. -- Version: 3.2
  1055.  
  1056. -- Instances:
  1057.  
  1058. local loadingscreen = Instance.new("ScreenGui")
  1059. local Frame = Instance.new("Frame")
  1060. local text = Instance.new("TextLabel")
  1061.  
  1062. --Properties:
  1063.  
  1064. loadingscreen.Name = "loading screen"
  1065. loadingscreen.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  1066. loadingscreen.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  1067.  
  1068. Frame.Parent = loadingscreen
  1069. Frame.AnchorPoint = Vector2.new(1, 0)
  1070. Frame.BackgroundColor3 = Color3.fromRGB(85, 255, 255)
  1071. Frame.Position = UDim2.new(1, 0, -0.0588957071, 0)
  1072. Frame.Size = UDim2.new(1.204, 0, 1.05499995, 3)
  1073.  
  1074. text.Name = "text"
  1075. text.Parent = Frame
  1076. text.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1077. text.Position = UDim2.new(0.435789853, 0, 0.383942842, 0)
  1078. text.Size = UDim2.new(0, 513, 0, 200)
  1079. text.Font = Enum.Font.Code
  1080. text.Text = "Loading Undetected Scripts"
  1081. text.TextColor3 = Color3.fromRGB(255, 255, 255)
  1082. text.TextScaled = true
  1083. text.TextSize = 14.000
  1084. text.TextWrapped = true
  1085.  
  1086. -- Scripts:
  1087.  
  1088. local function ENBCNAS_fake_script() -- text.LocalScript
  1089. local script = Instance.new('LocalScript', text)
  1090.  
  1091. local text = script.Parent
  1092.  
  1093. while true do
  1094. text.Text = "Loading Undetected Scripts"
  1095. wait(0.5)
  1096. text.Text = "Bypassing anti cheat."
  1097. wait(0.5)
  1098. text.Text = "Loading Undetected Scripts.."
  1099. wait(0.5)
  1100. text.Text = "bypass complete..."
  1101. wait(0.5)
  1102. end
  1103. end
  1104. coroutine.wrap(ENBCNAS_fake_script)()
  1105. local function VVKKYDA_fake_script() -- Frame.LocalScript
  1106. local script = Instance.new('LocalScript', Frame)
  1107.  
  1108. local frame = script.Parent
  1109.  
  1110. wait(10)
  1111.  
  1112. for i = 1,100 do
  1113. frame.BackgroundTransparency -= 0.01
  1114. wait(0.01)
  1115. end
  1116.  
  1117. end
  1118. coroutine.wrap(VVKKYDA_fake_script)()
  1119. local function ILYAL_fake_script() -- Frame.LocalScript
  1120. local script = Instance.new('LocalScript', Frame)
  1121.  
  1122. local frame = script.Parent
  1123.  
  1124. wait(10)
  1125.  
  1126. frame.Visible = false
  1127.  
  1128. end
  1129. coroutine.wrap(ILYAL_fake_script)()
  1130.  
  1131. end)
  1132. end
  1133. coroutine.wrap(RJNTMB_fake_script)()
  1134. local function AZJRFO_fake_script() -- close.LocalScript
  1135. local script = Instance.new('LocalScript', close)
  1136.  
  1137. script.Parent.MouseButton1Click:Connect(function()
  1138. script.Parent.Parent.Visible = false
  1139. end)
  1140.  
  1141. end
  1142. coroutine.wrap(AZJRFO_fake_script)()
Add Comment
Please, Sign In to add comment