Ubicast

Simple V2 - Open Source

Jan 19th, 2021 (edited)
15,031
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 48.71 KB | None | 0 0
  1. --[[
  2.  
  3.  
  4.  
  5.         ██╗░░░██╗██████╗░██╗░█████╗░░█████╗░░██████╗████████╗
  6.         ██║░░░██║██╔══██╗██║██╔══██╗██╔══██╗██╔════╝╚══██╔══╝
  7.         ██║░░░██║██████╦╝██║██║░░╚═╝███████║╚█████╗░░░░██║░░░
  8.         ██║░░░██║██╔══██╗██║██║░░██╗██╔══██║░╚═══██╗░░░██║░░░
  9.         ╚██████╔╝██████╦╝██║╚█████╔╝██║░░██║██████╔╝░░░██║░░░
  10.         ░╚═════╝░╚═════╝░╚═╝░╚════╝░╚═╝░░╚═╝╚═════╝░░░░╚═╝░░░
  11.  
  12.  
  13. -- \\ ^ Developer Notes ^ // --
  14.  
  15. - Press "Y" to print a list of commands, check the Developer Console output
  16.  
  17.     -:-Commands-:-
  18.  
  19.         ~ Press "E" to toggle NoClip ON/OFF
  20.         ~ Press "R" to toggle Infinite Jump ON/OFF
  21.         ~ Press and hold "LeftControl" and click with "LeftMouseButton" to teleport to that position
  22.         ~ Press "F" to toggle Fly ON/OFF
  23.  
  24. - This particular script is open source and rare to find, if you have found this script either the developer himself gave you it or It's leaked.
  25.  
  26. - Simple V2 Mini was made by Ubicast, report bugs / glitches on my discord Aleksandar#2880
  27.  
  28. ]]
  29.  
  30. pcall(function()
  31.  
  32. --// _ Variables _ \\--
  33.  
  34. local SimpleV2Mini = Instance.new("ScreenGui")
  35. local Main = Instance.new("ImageLabel")
  36. local Bar = Instance.new("ImageLabel")
  37. local BottomLine = Instance.new("Frame")
  38. local Title = Instance.new("TextLabel")
  39. local Close = Instance.new("TextButton")
  40. local Minimize = Instance.new("TextButton")
  41. local Scripts = Instance.new("Frame")
  42. local noclip = Instance.new("TextButton")
  43. local Underline = Instance.new("Frame")
  44. local clicktp = Instance.new("TextButton")
  45. local Underline_2 = Instance.new("Frame")
  46. local fly = Instance.new("TextButton")
  47. local Underline_3 = Instance.new("Frame")
  48. local infinitejump = Instance.new("TextButton")
  49. local Underline_4 = Instance.new("Frame")
  50. local jumppower = Instance.new("TextButton")
  51. local Underline_5 = Instance.new("Frame")
  52. local walkspeed = Instance.new("TextButton")
  53. local Underline_6 = Instance.new("Frame")
  54. local btools = Instance.new("TextButton")
  55. local Underline_7 = Instance.new("Frame")
  56. local teleport = Instance.new("TextButton")
  57. local Underline_8 = Instance.new("Frame")
  58. local JumpPower = Instance.new("ImageLabel")
  59. local Input = Instance.new("TextBox")
  60. local Set = Instance.new("TextButton")
  61. local Reset = Instance.new("TextButton")
  62. local WalkSpeed = Instance.new("ImageLabel")
  63. local Input_2 = Instance.new("TextBox")
  64. local Set_2 = Instance.new("TextButton")
  65. local Reset_2 = Instance.new("TextButton")
  66. local Teleport = Instance.new("ImageLabel")
  67. local Input_3 = Instance.new("TextBox")
  68. local Set_3 = Instance.new("TextButton")
  69. local TextLabel = Instance.new("TextLabel")
  70. local Open = Instance.new("TextButton")
  71.  
  72. --// _ TweenService _ \\--
  73.  
  74. local tweenservice = game:GetService("TweenService")
  75. local tweeninfo = TweenInfo.new(0.25, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
  76. local properties1 = {TextTransparency = 1} -- Invisible
  77. local properties2 = {TextTransparency = 0} -- Visible
  78. local properties3 = {BackgroundTransparency = 1} -- Invisible
  79. local properties4 = {BackgroundTransparency = 0} -- Visible
  80. local properties5 = {ImageTransparency = 1} -- Invisible
  81. local properties6 = {ImageTransparency = 0} -- Visible
  82. local properties7 = {BackgroundTransparency = 1, TextTransparency = 1} -- Button Invisible
  83. local properties8 = {BackgroundTransparency = 0, TextTransparency = 0} -- Button Visible
  84. local properties9 = {BackgroundColor3 = Color3.fromRGB(87, 135, 72)}
  85. local properties10 = {BackgroundColor3 =Color3.fromRGB(255, 255, 255)}
  86. local create1 = tweenservice:Create(Underline, tweeninfo, properties3) -- Underline1 Invisible
  87. local create2 = tweenservice:Create(Underline, tweeninfo, properties4) -- Underline1 Visible
  88. local create3 = tweenservice:Create(Underline_2, tweeninfo, properties3) -- Underline2 Invisible
  89. local create4 = tweenservice:Create(Underline_2, tweeninfo, properties4) -- Underline2 Visible
  90. local create5 = tweenservice:Create(Underline_3, tweeninfo, properties3) -- Underline3 Invisible
  91. local create6 = tweenservice:Create(Underline_3, tweeninfo, properties4) -- Underline3 Visible
  92. local create7 = tweenservice:Create(Underline_4, tweeninfo, properties3) -- Underline4 Invisible
  93. local create8 = tweenservice:Create(Underline_4, tweeninfo, properties4) -- Underline4 Visible
  94. local create9 = tweenservice:Create(Underline_5, tweeninfo, properties3) -- Underline5 Invisible
  95. local create10 = tweenservice:Create(Underline_5, tweeninfo, properties4) -- Underline5 Visible
  96. local create11 = tweenservice:Create(Underline_6, tweeninfo, properties3) -- Underline6 Invisible
  97. local create12 = tweenservice:Create(Underline_6, tweeninfo, properties4) -- Underline6 Visible
  98. local create13 = tweenservice:Create(Underline_7, tweeninfo, properties3) -- Underline7 Invisible
  99. local create131 = tweenservice:Create(Underline_7, tweeninfo, properties4) -- Underline7 Visible
  100. local create14 = tweenservice:Create(Underline_8, tweeninfo, properties3) -- Underline8 Invisible
  101. local create15 = tweenservice:Create(Underline_8, tweeninfo, properties4) -- Underline8 Visible
  102. local create16 = tweenservice:Create(WalkSpeed, tweeninfo, properties5) -- WalkSpeed Frame Invisible
  103. local create17 = tweenservice:Create(WalkSpeed, tweeninfo, properties6) -- WalkSpeed Frame Visible
  104. local create18 = tweenservice:Create(Input_2, tweeninfo, properties7) -- WalkSpeed - Input Invisible
  105. local create19 = tweenservice:Create(Input_2, tweeninfo, properties8) -- WalkSpeed - Input Visible
  106. local create20 = tweenservice:Create(Set_2, tweeninfo, properties7) -- WalkSpeed - Set Invisible
  107. local create21 = tweenservice:Create(Set_2, tweeninfo, properties8) -- WalkSpeed - Set Visible
  108. local create22 = tweenservice:Create(Reset_2, tweeninfo, properties7) -- WalkSpeed - Reset Invisible
  109. local create23 = tweenservice:Create(Reset_2, tweeninfo, properties8) -- WalkSpeed - Reset Visible
  110. local create24 = tweenservice:Create(Teleport, tweeninfo, properties5) -- Teleport Frame Invisible
  111. local create25 = tweenservice:Create(Teleport, tweeninfo, properties6) -- Teleport Frame Visible
  112. local create26 = tweenservice:Create(Input_3, tweeninfo, properties7) -- Teleport - Input Invisible
  113. local create27 = tweenservice:Create(Input_3, tweeninfo, properties8) -- Teleport - Input Visible
  114. local create28 = tweenservice:Create(Set_3, tweeninfo, properties7) -- Teleport - Set Invisible
  115. local create29 = tweenservice:Create(Set_3, tweeninfo, properties8) -- Teleport - Set Visible
  116. local create30 = tweenservice:Create(JumpPower, tweeninfo, properties5) -- JumpPower Frame Invisible
  117. local create31 = tweenservice:Create(JumpPower, tweeninfo, properties6) -- JumpPower Frame Visible
  118. local create32 = tweenservice:Create(Input, tweeninfo, properties7) -- JumpPower - Input Invisible
  119. local create33 = tweenservice:Create(Input, tweeninfo, properties8) -- JumpPower - Input Visible
  120. local create34 = tweenservice:Create(Set, tweeninfo, properties7) -- JumpPower - Set Invisible
  121. local create35 = tweenservice:Create(Set, tweeninfo, properties8) -- JumpPower - Set Visible
  122. local create36 = tweenservice:Create(Reset, tweeninfo, properties7) -- JumpPower - Reset Invisible
  123. local create37 = tweenservice:Create(Reset, tweeninfo, properties8) -- JumpPower - Reset Visible
  124. local createtext1 = tweenservice:Create(TextLabel, tweeninfo, properties1) -- Credit Invisible
  125. local createtext2 = tweenservice:Create(TextLabel, tweeninfo, properties2) -- Credit Visible
  126.  
  127. local c1 = tweenservice:Create(noclip, tweeninfo, properties8)
  128. local c2 = tweenservice:Create(clicktp, tweeninfo, properties8)
  129. local c3 = tweenservice:Create(walkspeed, tweeninfo, properties8)
  130. local c4 = tweenservice:Create(fly, tweeninfo, properties8)
  131. local c5 = tweenservice:Create(infinitejump, tweeninfo, properties8)
  132. local c6 = tweenservice:Create(btools, tweeninfo, properties8)
  133. local c7 = tweenservice:Create(jumppower, tweeninfo, properties8)
  134. local c8 = tweenservice:Create(teleport, tweeninfo, properties8)
  135.  
  136. local color1 = tweenservice:Create(Underline_6, tweeninfo, properties9) -- WalkSpeed - Fade In Color
  137. local color2 = tweenservice:Create(Underline_6, tweeninfo, properties10) -- WalkSpeed - Fade Out Color
  138. local color3 = tweenservice:Create(Underline_5, tweeninfo, properties9) -- JumpPower - Fade In Color
  139. local color4 = tweenservice:Create(Underline_5, tweeninfo, properties10) -- JumpPower - Fade Out Color
  140. local color5 = tweenservice:Create(Underline_8, tweeninfo, properties9) -- Teleport - Fade In Color
  141. local color6 = tweenservice:Create(Underline_8, tweeninfo, properties10) -- Teleport - Fade Out Color
  142.  
  143. local mouse = game.Players.LocalPlayer:GetMouse()
  144. local userinputservice = game:GetService("UserInputService")
  145. local player = game.Players.LocalPlayer
  146. local humanoid = player.Character:WaitForChild("Humanoid", 10)
  147.  
  148. local WsOpened = false
  149. local JpOpened = false
  150. local TpOpened = false
  151.  
  152. local NoClipLoaded = false
  153. local ClickTpLoaded = false
  154. local FlyLoaded = false
  155. local InfiniteJumpLoaded = false
  156.  
  157. local noclipping = false
  158.  
  159. --[[
  160.  
  161.     -:-Color Pallete-:-
  162.  
  163. Button Green Text = 87, 135, 72
  164. Button Normal Text = 133, 133, 133
  165. Button Yellow Text = 150, 150, 0
  166. Button Red Text = 255, 111, 111
  167.  
  168. ]]
  169.  
  170. --// _ Functions _ \\--
  171.  
  172. function ShowCommands()
  173.     print("Simple V2 Mini Commands :")
  174.     print('   ~ Press "E" to toggle NoClip ON/OFF')
  175.     print('   ~ Press "R" to toggle Infinite Jump ON/OFF')
  176.     print('   ~ Press and hold "LeftControl" and click with "LeftMouseButton" to teleport to that position')
  177.     print('   ~ Press "F" to toggle Fly ON/OFF')
  178. end
  179.  
  180. function Intro()
  181.     wait(1)
  182.     Main:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), "Out", "Sine", .5)
  183.     wait(1)
  184.     c1:Play()
  185.     c2:Play()
  186.     c3:Play()
  187.     c4:Play()
  188.     c5:Play()
  189.     c6:Play()
  190.     c7:Play()
  191.     c8:Play()
  192.     createtext2:Play()
  193.     wait()
  194.     return ShowCommands()
  195. end
  196.  
  197. function TpClose()
  198.     TpOpened = false
  199.     color6:Play()
  200.     create14:Play()
  201.     Underline_8:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  202.     createtext2:Play()
  203.     create24:Play()
  204.     create26:Play()
  205.     create28:Play()
  206.     Teleport:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  207.     wait(0.25)
  208.     Teleport.Visible = false
  209. end
  210.  
  211. function JpClose()
  212.     JpOpened = false
  213.     color4:Play()
  214.     create9:Play()
  215.     Underline_5:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  216.     createtext2:Play()
  217.     create30:Play()
  218.     create32:Play()
  219.     create34:Play()
  220.     create36:Play()
  221.     JumpPower:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  222.     wait(0.25)
  223.     JumpPower.Visible = false
  224. end
  225.  
  226. function WsClose()
  227.     WsOpened = false
  228.     color2:Play()
  229.     create11:Play()
  230.     Underline_6:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  231.     createtext2:Play()
  232.     create16:Play()
  233.     create18:Play()
  234.     create20:Play()
  235.     create22:Play()
  236.     WalkSpeed:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  237.     wait(0.5)
  238.     WalkSpeed.Visible = false
  239. end
  240.  
  241. --// _ Properties _ \\--
  242.  
  243.  
  244. SimpleV2Mini.Name = "Simple V2 Mini"
  245. SimpleV2Mini.Parent = game.CoreGui
  246. SimpleV2Mini.ResetOnSpawn = false
  247.  
  248. Main.Name = "Main"
  249. Main.Parent = SimpleV2Mini
  250. Main.AnchorPoint = Vector2.new(0.5, 0.5)
  251. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  252. Main.BackgroundTransparency = 1.000
  253. Main.Position = UDim2.new(-1, 0, 0.5, 0)
  254. Main.Size = UDim2.new(0, 380, 0, 214)
  255. Main.Image = "rbxassetid://3570695787"
  256. Main.ImageColor3 = Color3.fromRGB(40, 40, 40)
  257. Main.ScaleType = Enum.ScaleType.Slice
  258. Main.SliceCenter = Rect.new(100, 100, 100, 100)
  259. Main.SliceScale = 0.060
  260.  
  261. Bar.Name = "Bar"
  262. Bar.Parent = Main
  263. Bar.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  264. Bar.BackgroundTransparency = 1.000
  265. Bar.Size = UDim2.new(0, 380, 0, 28)
  266. Bar.Image = "rbxassetid://3570695787"
  267. Bar.ImageColor3 = Color3.fromRGB(25, 25, 25)
  268. Bar.ScaleType = Enum.ScaleType.Slice
  269. Bar.SliceCenter = Rect.new(100, 100, 100, 100)
  270. Bar.SliceScale = 0.060
  271.  
  272. BottomLine.Name = "BottomLine"
  273. BottomLine.Parent = Bar
  274. BottomLine.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  275. BottomLine.BorderSizePixel = 0
  276. BottomLine.Position = UDim2.new(0, 0, 0.762999952, 0)
  277. BottomLine.Size = UDim2.new(0, 380, 0, 12)
  278.  
  279. Title.Name = "Title"
  280. Title.Parent = Bar
  281. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  282. Title.BackgroundTransparency = 1.000
  283. Title.Position = UDim2.new(0.00789473671, 0, 0, 0)
  284. Title.Size = UDim2.new(0, 110, 0, 33)
  285. Title.Font = Enum.Font.GothamSemibold
  286. Title.Text = "Simple V2        "
  287. Title.TextColor3 = Color3.fromRGB(170, 170, 170)
  288. Title.TextSize = 14.000
  289.  
  290. Close.Name = "Close"
  291. Close.Parent = Bar
  292. Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  293. Close.BackgroundTransparency = 1.000
  294. Close.Position = UDim2.new(0.925481856, 0, 0, 0)
  295. Close.Size = UDim2.new(0, 27, 0, 33)
  296. Close.Font = Enum.Font.SourceSans
  297. Close.Text = "X"
  298. Close.TextColor3 = Color3.fromRGB(133, 133, 133)
  299. Close.TextScaled = true
  300. Close.TextSize = 14.000
  301. Close.TextWrapped = true
  302.  
  303. Minimize.Name = "Minimize"
  304. Minimize.Parent = Bar
  305. Minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  306. Minimize.BackgroundTransparency = 1.000
  307. Minimize.Position = UDim2.new(0.859692395, 0, 0, 0)
  308. Minimize.Size = UDim2.new(0, 27, 0, 33)
  309. Minimize.Font = Enum.Font.SourceSans
  310. Minimize.Text = "-"
  311. Minimize.TextColor3 = Color3.fromRGB(133, 133, 133)
  312. Minimize.TextScaled = true
  313. Minimize.TextSize = 14.000
  314. Minimize.TextWrapped = true
  315.  
  316. Scripts.Name = "Scripts"
  317. Scripts.Parent = Main
  318. Scripts.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  319. Scripts.BorderSizePixel = 0
  320. Scripts.Position = UDim2.new(0.0131578948, 0, 0.158878505, 0)
  321. Scripts.Size = UDim2.new(0, 368, 0, 172)
  322.  
  323. noclip.Name = "noclip"
  324. noclip.Parent = Scripts
  325. noclip.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  326. noclip.BorderColor3 = Color3.fromRGB(0, 0, 0)
  327. noclip.Position = UDim2.new(0.0543478243, 0, 0.16194737, 0)
  328. noclip.Size = UDim2.new(0, 70, 0, 26)
  329. noclip.Font = Enum.Font.SourceSans
  330. noclip.Text = "NoClip"
  331. noclip.TextColor3 = Color3.fromRGB(133, 133, 133)
  332. noclip.TextSize = 14.000
  333. noclip.TextTransparency = 1
  334. noclip.BackgroundTransparency = 1
  335.  
  336. Underline.Name = "Underline"
  337. Underline.Parent = noclip
  338. Underline.AnchorPoint = Vector2.new(0.5, 0.5)
  339. Underline.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  340. Underline.BackgroundTransparency = 1.000
  341. Underline.BorderSizePixel = 0
  342. Underline.Position = UDim2.new(0.5, 0, 1, -1)
  343. Underline.Size = UDim2.new(0, 0, 0, 2)
  344.  
  345. clicktp.Name = "clicktp"
  346. clicktp.Parent = Scripts
  347. clicktp.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  348. clicktp.BorderColor3 = Color3.fromRGB(0, 0, 0)
  349. clicktp.Position = UDim2.new(0.284465134, 0, 0.16194737, 0)
  350. clicktp.Size = UDim2.new(0, 70, 0, 26)
  351. clicktp.Font = Enum.Font.SourceSans
  352. clicktp.Text = "Click TP"
  353. clicktp.TextColor3 = Color3.fromRGB(133, 133, 133)
  354. clicktp.TextSize = 14.000
  355. clicktp.TextTransparency = 1
  356. clicktp.BackgroundTransparency = 1
  357.  
  358. Underline_2.Name = "Underline"
  359. Underline_2.Parent = clicktp
  360. Underline_2.AnchorPoint = Vector2.new(0.5, 0.5)
  361. Underline_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  362. Underline_2.BackgroundTransparency = 1.000
  363. Underline_2.BorderSizePixel = 0
  364. Underline_2.Position = UDim2.new(0.5, 0, 1, -1)
  365. Underline_2.Size = UDim2.new(0, 0, 0, 2)
  366.  
  367. fly.Name = "fly"
  368. fly.Parent = Scripts
  369. fly.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  370. fly.BorderColor3 = Color3.fromRGB(0, 0, 0)
  371. fly.Position = UDim2.new(0.523772061, 0, 0.16194737, 0)
  372. fly.Size = UDim2.new(0, 70, 0, 26)
  373. fly.Font = Enum.Font.SourceSans
  374. fly.Text = "Fly"
  375. fly.TextColor3 = Color3.fromRGB(133, 133, 133)
  376. fly.TextSize = 14.000
  377. fly.TextTransparency = 1
  378. fly.BackgroundTransparency = 1
  379.  
  380. Underline_3.Name = "Underline"
  381. Underline_3.Parent = fly
  382. Underline_3.AnchorPoint = Vector2.new(0.5, 0.5)
  383. Underline_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  384. Underline_3.BackgroundTransparency = 1.000
  385. Underline_3.BorderSizePixel = 0
  386. Underline_3.Position = UDim2.new(0.5, 0, 1, -1)
  387. Underline_3.Size = UDim2.new(0, 0, 0, 2)
  388.  
  389. infinitejump.Name = "infinitejump"
  390. infinitejump.Parent = Scripts
  391. infinitejump.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  392. infinitejump.BorderColor3 = Color3.fromRGB(0, 0, 0)
  393. infinitejump.Position = UDim2.new(0.284465134, 0, 0.534040451, 0)
  394. infinitejump.Size = UDim2.new(0, 70, 0, 26)
  395. infinitejump.Font = Enum.Font.SourceSans
  396. infinitejump.Text = "Infinite Jump"
  397. infinitejump.TextColor3 = Color3.fromRGB(133, 133, 133)
  398. infinitejump.TextSize = 14.000
  399. infinitejump.TextTransparency = 1
  400. infinitejump.BackgroundTransparency = 1
  401.  
  402. Underline_4.Name = "Underline"
  403. Underline_4.Parent = infinitejump
  404. Underline_4.AnchorPoint = Vector2.new(0.5, 0.5)
  405. Underline_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  406. Underline_4.BackgroundTransparency = 1.000
  407. Underline_4.BorderSizePixel = 0
  408. Underline_4.Position = UDim2.new(0.5, 0, 1, -1)
  409. Underline_4.Size = UDim2.new(0, 0, 0, 2)
  410.  
  411. jumppower.Name = "jumppower"
  412. jumppower.Parent = Scripts
  413. jumppower.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  414. jumppower.BorderColor3 = Color3.fromRGB(0, 0, 0)
  415. jumppower.Position = UDim2.new(0.0534869432, 0, 0.534040451, 0)
  416. jumppower.Size = UDim2.new(0, 70, 0, 26)
  417. jumppower.Font = Enum.Font.SourceSans
  418. jumppower.Text = "JumpPower"
  419. jumppower.TextColor3 = Color3.fromRGB(133, 133, 133)
  420. jumppower.TextSize = 14.000
  421. jumppower.TextTransparency = 1
  422. jumppower.BackgroundTransparency = 1
  423.  
  424. Underline_5.Name = "Underline"
  425. Underline_5.Parent = jumppower
  426. Underline_5.AnchorPoint = Vector2.new(0.5, 0.5)
  427. Underline_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  428. Underline_5.BackgroundTransparency = 1.000
  429. Underline_5.BorderSizePixel = 0
  430. Underline_5.Position = UDim2.new(0.5, 0, 1, -1)
  431. Underline_5.Size = UDim2.new(0, 0, 0, 2)
  432.  
  433. walkspeed.Name = "walkspeed"
  434. walkspeed.Parent = Scripts
  435. walkspeed.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  436. walkspeed.BorderColor3 = Color3.fromRGB(0, 0, 0)
  437. walkspeed.Position = UDim2.new(0.758152187, 0, 0.16194737, 0)
  438. walkspeed.Size = UDim2.new(0, 70, 0, 26)
  439. walkspeed.Font = Enum.Font.SourceSans
  440. walkspeed.Text = " WalkSpeed"
  441. walkspeed.TextColor3 = Color3.fromRGB(133, 133, 133)
  442. walkspeed.TextSize = 14.000
  443. walkspeed.TextTransparency = 1
  444. walkspeed.BackgroundTransparency = 1
  445.  
  446. Underline_6.Name = "Underline"
  447. Underline_6.Parent = walkspeed
  448. Underline_6.AnchorPoint = Vector2.new(0.5, 0.5)
  449. Underline_6.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  450. Underline_6.BackgroundTransparency = 1.000
  451. Underline_6.BorderSizePixel = 0
  452. Underline_6.Position = UDim2.new(0.5, 0, 1, -1)
  453. Underline_6.Size = UDim2.new(0, 0, 0, 2)
  454.  
  455. btools.Name = "btools"
  456. btools.Parent = Scripts
  457. btools.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  458. btools.BorderColor3 = Color3.fromRGB(0, 0, 0)
  459. btools.Position = UDim2.new(0.757291198, 0, 0.534040451, 0)
  460. btools.Size = UDim2.new(0, 70, 0, 26)
  461. btools.Font = Enum.Font.SourceSans
  462. btools.Text = "BTools"
  463. btools.TextColor3 = Color3.fromRGB(133, 133, 133)
  464. btools.TextSize = 14.000
  465. btools.TextTransparency = 1
  466. btools.BackgroundTransparency = 1
  467.  
  468. Underline_7.Name = "Underline"
  469. Underline_7.Parent = btools
  470. Underline_7.AnchorPoint = Vector2.new(0.5, 0.5)
  471. Underline_7.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  472. Underline_7.BackgroundTransparency = 1.000
  473. Underline_7.BorderSizePixel = 0
  474. Underline_7.Position = UDim2.new(0.5, 0, 1, -1)
  475. Underline_7.Size = UDim2.new(0, 0, 0, 2)
  476.  
  477. teleport.Name = "teleport"
  478. teleport.Parent = Scripts
  479. teleport.BackgroundColor3 = Color3.fromRGB(33, 33, 33)
  480. teleport.BorderColor3 = Color3.fromRGB(0, 0, 0)
  481. teleport.Position = UDim2.new(0.523595512, 0, 0.534040451, 0)
  482. teleport.Size = UDim2.new(0, 70, 0, 26)
  483. teleport.Font = Enum.Font.SourceSans
  484. teleport.Text = "Teleport"
  485. teleport.TextColor3 = Color3.fromRGB(133, 133, 133)
  486. teleport.TextSize = 14.000
  487. teleport.TextTransparency = 1
  488. teleport.BackgroundTransparency = 1
  489.  
  490. Underline_8.Name = "Underline"
  491. Underline_8.Parent = teleport
  492. Underline_8.AnchorPoint = Vector2.new(0.5, 0.5)
  493. Underline_8.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  494. Underline_8.BackgroundTransparency = 1.000
  495. Underline_8.BorderSizePixel = 0
  496. Underline_8.Position = UDim2.new(0.5, 0, 1, -1)
  497. Underline_8.Size = UDim2.new(0, 0, 0, 2)
  498.  
  499. JumpPower.Name = "JumpPower"
  500. JumpPower.Parent = Main
  501. JumpPower.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  502. JumpPower.BackgroundTransparency = 1.000
  503. JumpPower.Position = UDim2.new(0, 0, 0.561579347, 0)
  504. JumpPower.Size = UDim2.new(0, 380, 0, 93)
  505. JumpPower.Visible = false
  506. JumpPower.Image = "rbxassetid://3570695787"
  507. JumpPower.ImageColor3 = Color3.fromRGB(40, 40, 40)
  508. JumpPower.ImageTransparency = 1.000
  509. JumpPower.ScaleType = Enum.ScaleType.Slice
  510. JumpPower.SliceCenter = Rect.new(100, 100, 100, 100)
  511. JumpPower.SliceScale = 0.090
  512.  
  513. Input.Name = "Input"
  514. Input.Parent = JumpPower
  515. Input.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  516. Input.BackgroundTransparency = 1.000
  517. Input.BorderColor3 = Color3.fromRGB(170, 255, 255)
  518. Input.Position = UDim2.new(0.369994849, 0, 0.172043011, 0)
  519. Input.Size = UDim2.new(0, 102, 0, 31)
  520. Input.Font = Enum.Font.SourceSans
  521. Input.PlaceholderText = "Enter Power Value"
  522. Input.Text = ""
  523. Input.TextColor3 = Color3.fromRGB(133, 133, 133)
  524. Input.TextSize = 14.000
  525. Input.TextTransparency = 1.000
  526.  
  527. Set.Name = "Set"
  528. Set.Parent = JumpPower
  529. Set.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  530. Set.BackgroundTransparency = 1.000
  531. Set.BorderColor3 = Color3.fromRGB(85, 170, 255)
  532. Set.Position = UDim2.new(0.304282784, 0, 0.645161271, 0)
  533. Set.Size = UDim2.new(0, 68, 0, 18)
  534. Set.Font = Enum.Font.SourceSans
  535. Set.Text = "Set"
  536. Set.TextColor3 = Color3.fromRGB(133, 133, 133)
  537. Set.TextSize = 14.000
  538. Set.TextTransparency = 1.000
  539.  
  540. Reset.Name = "Reset"
  541. Reset.Parent = JumpPower
  542. Reset.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  543. Reset.BackgroundTransparency = 1.000
  544. Reset.BorderColor3 = Color3.fromRGB(85, 170, 255)
  545. Reset.Position = UDim2.new(0.513699651, 0, 0.645161271, 0)
  546. Reset.Size = UDim2.new(0, 68, 0, 18)
  547. Reset.Font = Enum.Font.SourceSans
  548. Reset.Text = "Reset"
  549. Reset.TextColor3 = Color3.fromRGB(133, 133, 133)
  550. Reset.TextSize = 14.000
  551. Reset.TextTransparency = 1.000
  552.  
  553. WalkSpeed.Name = "WalkSpeed"
  554. WalkSpeed.Parent = Main
  555. WalkSpeed.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  556. WalkSpeed.BackgroundTransparency = 1.000
  557. WalkSpeed.Position = UDim2.new(0, 0, 0.561579347, 0)
  558. WalkSpeed.Size = UDim2.new(0, 380, 0, 93)
  559. WalkSpeed.Visible = false
  560. WalkSpeed.Image = "rbxassetid://3570695787"
  561. WalkSpeed.ImageColor3 = Color3.fromRGB(40, 40, 40)
  562. WalkSpeed.ImageTransparency = 1.000
  563. WalkSpeed.ScaleType = Enum.ScaleType.Slice
  564. WalkSpeed.SliceCenter = Rect.new(100, 100, 100, 100)
  565. WalkSpeed.SliceScale = 0.090
  566.  
  567. Input_2.Name = "Input"
  568. Input_2.Parent = WalkSpeed
  569. Input_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  570. Input_2.BackgroundTransparency = 1.000
  571. Input_2.BorderColor3 = Color3.fromRGB(170, 255, 255)
  572. Input_2.Position = UDim2.new(0.370000005, 0, 0.172000006, 0)
  573. Input_2.Size = UDim2.new(0, 102, 0, 31)
  574. Input_2.Font = Enum.Font.SourceSans
  575. Input_2.PlaceholderText = "Enter Speed Value"
  576. Input_2.Text = ""
  577. Input_2.TextColor3 = Color3.fromRGB(133, 133, 133)
  578. Input_2.TextSize = 14.000
  579. Input_2.TextTransparency = 1.000
  580.  
  581. Set_2.Name = "Set"
  582. Set_2.Parent = WalkSpeed
  583. Set_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  584. Set_2.BackgroundTransparency = 1.000
  585. Set_2.BorderColor3 = Color3.fromRGB(85, 170, 255)
  586. Set_2.Position = UDim2.new(0.30399999, 0, 0.644999981, 0)
  587. Set_2.Size = UDim2.new(0, 68, 0, 18)
  588. Set_2.Font = Enum.Font.SourceSans
  589. Set_2.Text = "Set"
  590. Set_2.TextColor3 = Color3.fromRGB(133, 133, 133)
  591. Set_2.TextSize = 14.000
  592. Set_2.TextTransparency = 1.000
  593.  
  594. Reset_2.Name = "Reset"
  595. Reset_2.Parent = WalkSpeed
  596. Reset_2.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  597. Reset_2.BackgroundTransparency = 1.000
  598. Reset_2.BorderColor3 = Color3.fromRGB(85, 170, 255)
  599. Reset_2.Position = UDim2.new(0.513999999, 0, 0.644999981, 0)
  600. Reset_2.Size = UDim2.new(0, 68, 0, 18)
  601. Reset_2.Font = Enum.Font.SourceSans
  602. Reset_2.Text = "Reset"
  603. Reset_2.TextColor3 = Color3.fromRGB(133, 133, 133)
  604. Reset_2.TextSize = 14.000
  605. Reset_2.TextTransparency = 1.000
  606.  
  607. Teleport.Name = "Teleport"
  608. Teleport.Parent = Main
  609. Teleport.BackgroundColor3 = Color3.fromRGB(36, 36, 36)
  610. Teleport.BackgroundTransparency = 1.000
  611. Teleport.Position = UDim2.new(0, 0, 0.561579406, 0)
  612. Teleport.Size = UDim2.new(0, 380, 0, 93)
  613. Teleport.Visible = false
  614. Teleport.Image = "rbxassetid://3570695787"
  615. Teleport.ImageColor3 = Color3.fromRGB(40, 40, 40)
  616. Teleport.ImageTransparency = 1.000
  617. Teleport.ScaleType = Enum.ScaleType.Slice
  618. Teleport.SliceCenter = Rect.new(100, 100, 100, 100)
  619. Teleport.SliceScale = 0.090
  620.  
  621. Input_3.Name = "Input"
  622. Input_3.Parent = Teleport
  623. Input_3.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  624. Input_3.BackgroundTransparency = 1.000
  625. Input_3.BorderColor3 = Color3.fromRGB(170, 255, 255)
  626. Input_3.Position = UDim2.new(0.344627231, 0, 0.0645161346, 0)
  627. Input_3.Size = UDim2.new(0, 114, 0, 31)
  628. Input_3.Font = Enum.Font.SourceSans
  629. Input_3.PlaceholderText = "Full Player Username"
  630. Input_3.Text = ""
  631. Input_3.TextColor3 = Color3.fromRGB(133, 133, 133)
  632. Input_3.TextSize = 14.000
  633. Input_3.TextTransparency = 1.000
  634.  
  635. Set_3.Name = "Set"
  636. Set_3.Parent = Teleport
  637. Set_3.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  638. Set_3.BackgroundTransparency = 1.000
  639. Set_3.BorderColor3 = Color3.fromRGB(85, 170, 255)
  640. Set_3.Position = UDim2.new(0.365241289, 0, 0.580645204, 0)
  641. Set_3.Size = UDim2.new(0, 99, 0, 18)
  642. Set_3.Font = Enum.Font.SourceSans
  643. Set_3.Text = "Teleport"
  644. Set_3.TextColor3 = Color3.fromRGB(133, 133, 133)
  645. Set_3.TextSize = 14.000
  646. Set_3.TextTransparency = 1.000
  647.  
  648. TextLabel.Parent = Main
  649. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  650. TextLabel.BackgroundTransparency = 1.000
  651. TextLabel.Position = UDim2.new(0.239473686, 0, 0.813084126, 0)
  652. TextLabel.Size = UDim2.new(0, 192, 0, 23)
  653. TextLabel.Font = Enum.Font.SourceSans
  654. TextLabel.Text = "Made by Ubicast / Aleksandar#2880"
  655. TextLabel.TextColor3 = Color3.fromRGB(133, 133, 133)
  656. TextLabel.TextSize = 14.000
  657. TextLabel.TextTransparency = 1
  658.  
  659. Open.Name = "Open"
  660. Open.Parent = SimpleV2Mini
  661. Open.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  662. Open.Position = UDim2.new(-0.3, 0, 0.784860551, 0)
  663. Open.Size = UDim2.new(0, 77, 0, 29)
  664. Open.Font = Enum.Font.GothamSemibold
  665. Open.BorderColor3 = Color3.fromRGB(255, 255, 255)
  666. Open.Text = "Open"
  667. Open.TextColor3 = Color3.fromRGB(133, 133, 133)
  668. Open.TextSize = 14.000
  669.  
  670. --// _ Scripts _ \\--
  671.  
  672.     --Dragify--
  673.  
  674. function dragify(Frame)
  675.  
  676.     local dragToggle
  677.     local dragSpeed = 0.25
  678.     local dragInput
  679.     local dragStart
  680.     local dragPos
  681.     function updateInput(input)
  682.         local Delta = input.Position - dragStart
  683.         local Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + Delta.X, startPos.Y.Scale, startPos.Y.Offset + Delta.Y)
  684.         game:GetService("TweenService"):Create(Frame, TweenInfo.new(0.25), {Position = Position}):Play()
  685.     end
  686.  
  687.     Frame.InputBegan:Connect(function(input)
  688.         if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) and userinputservice:GetFocusedTextBox() == nil then
  689.             dragToggle = true
  690.             dragStart = input.Position
  691.             startPos = Frame.Position
  692.             input.Changed:Connect(function()
  693.                 if input.UserInputState == Enum.UserInputState.End then
  694.                     dragToggle = false
  695.                 end
  696.             end)
  697.         end
  698.     end)
  699.  
  700.     Frame.InputChanged:Connect(function(input)
  701.         if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  702.             dragInput = input
  703.         end
  704.     end)
  705.  
  706.     game:GetService("UserInputService").InputChanged:Connect(function(input)
  707.         if input == dragInput and dragToggle then
  708.             updateInput(input)
  709.         end
  710.     end)
  711.  
  712. end
  713.  
  714. dragify(Main)
  715.  
  716.     --Minimize--
  717.  
  718. Minimize.MouseButton1Click:Connect(function()
  719.     Main:TweenPosition(UDim2.new(-1.5, 0, 0.5, 0), "Out", "Quad", 0.5)
  720.     Open:TweenPosition(UDim2.new(0, 0, 0.784860551, 0), "Out", "Quad", 0.5)
  721. end)
  722.  
  723.     --Maximize--
  724.  
  725. Open.MouseButton1Click:Connect(function()
  726.     Main:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), "Out", "Quad", 0.5)
  727.     Open:TweenPosition(UDim2.new(-0.3, 0, 0.784860551, 0), "Out", "Quad", 0.5)
  728. end)
  729.  
  730.     --Close--
  731.  
  732. Close.MouseButton1Click:Connect(function()
  733.     Main:TweenPosition(UDim2.new(-1.5, 0, 0.5, 0), "Out", "Quad", 0.5)
  734.     wait(2)
  735.     Main:Destroy()
  736. end)
  737.  
  738.     --Commands--
  739.  
  740. userinputservice.InputBegan:Connect(function(Key)
  741.     if Key.KeyCode == Enum.KeyCode.Y then
  742.         ShowCommands()
  743.         wait(10)
  744.     end
  745. end)
  746.  
  747.     --NoClip--
  748.  
  749. noclip.MouseButton1Click:Connect(function()
  750.     noclip.Text = "Loading"
  751.     noclip.TextColor3 = Color3.fromRGB(150, 150, 0)
  752.     --
  753.     noclipping = false
  754.  
  755.     game:GetService('RunService').Stepped:Connect(function()
  756.         if noclipping then
  757.             player.Character.Humanoid:ChangeState(11)
  758.         end
  759.     end)
  760.  
  761.     mouse.KeyDown:Connect(function(key)
  762.         if key == "e" then
  763.             noclipping = not noclipping
  764.             player.Character.Humanoid:ChangeState(11)
  765.         end
  766.     end)
  767.     --
  768.     wait(0.1)
  769.     noclip.TextColor3 = Color3.fromRGB(87, 135, 72)
  770.     noclip.Text = "Loaded"
  771.     wait(1)
  772.     noclip.TextColor3 = Color3.fromRGB(133, 133, 133)
  773.     noclip.Text = "NoClip"
  774. end)
  775.  
  776.     --Click Teleport--
  777.  
  778. clicktp.MouseButton1Click:Connect(function()
  779.     clicktp.Text = "Loading"
  780.     clicktp.TextColor3 = Color3.fromRGB(150, 150, 0)
  781.     --
  782.     function GetCharacter()
  783.         return player.Character
  784.     end
  785.  
  786.     function Teleport(pos)
  787.         local Char = GetCharacter()
  788.  
  789.         if Char then
  790.             Char:MoveTo(pos)
  791.         end
  792.     end
  793.  
  794.     userinputservice.InputBegan:Connect(function(input)
  795.         if input.UserInputType == Enum.UserInputType.MouseButton1 and userinputservice:IsKeyDown(Enum.KeyCode.LeftControl) then
  796.             Teleport(mouse.Hit.p)
  797.         end
  798.     end)
  799.     --
  800.     wait(0.1)
  801.     clicktp.TextColor3 = Color3.fromRGB(87, 135, 72)
  802.     clicktp.Text = "Loaded"
  803.     wait(1)
  804.     clicktp.TextColor3 = Color3.fromRGB(133, 133, 133)
  805.     clicktp.Text = "Click TP"
  806. end)
  807.  
  808.     --Fly--
  809.  
  810. fly.MouseButton1Click:Connect(function()
  811.     fly.Text = "Loading"
  812.     fly.TextColor3 = Color3.fromRGB(150, 150, 0)
  813.     --
  814.     flying = false
  815.     lplayer = player
  816.     speedget = 1
  817.     speedfly = 1
  818.    
  819.     mouse.KeyDown:Connect(function(k)
  820.         k = k:lower()
  821.         if k == "f" then
  822.             if flying == false then
  823.                
  824.                 repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  825.                 repeat wait() until mouse
  826.                
  827.                 local T = lplayer.Character.HumanoidRootPart
  828.                 local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  829.                 local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  830.                 local SPEED = speedget
  831.                
  832.                 local function fly()
  833.                     flying = true
  834.                     local BG = Instance.new('BodyGyro', T)
  835.                     local BV = Instance.new('BodyVelocity', T)
  836.                     BG.P = 9e4
  837.                     BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  838.                     BG.cframe = T.CFrame
  839.                     BV.velocity = Vector3.new(0, 0.1, 0)
  840.                     BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  841.                     spawn(function()
  842.                     repeat wait()
  843.                     lplayer.Character.Humanoid.PlatformStand = true
  844.                     if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  845.                         SPEED = 50
  846.                     elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  847.                         SPEED = 0
  848.                     end
  849.                     if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  850.                         BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  851.                         lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  852.                     elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  853.                         BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  854.                     else
  855.                         BV.velocity = Vector3.new(0, 0.1, 0)
  856.                     end
  857.                     BG.cframe = workspace.CurrentCamera.CoordinateFrame
  858.                     until not flying
  859.                         CONTROL = {F = 0, B = 0, L = 0, R = 0}
  860.                         lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  861.                         SPEED = 0
  862.                         BG:destroy()
  863.                         BV:destroy()
  864.                         lplayer.Character.Humanoid.PlatformStand = false
  865.                     end)
  866.                 end
  867.                 mouse.KeyDown:connect(function(KEY)
  868.                     if KEY:lower() == 'w' then
  869.                         CONTROL.F = speedfly
  870.                     elseif KEY:lower() == 's' then
  871.                         CONTROL.B = -speedfly
  872.                     elseif KEY:lower() == 'a' then
  873.                         CONTROL.L = -speedfly
  874.                     elseif KEY:lower() == 'd' then
  875.                         CONTROL.R = speedfly
  876.                     end
  877.                 end)
  878.                 mouse.KeyUp:connect(function(KEY)
  879.                     if KEY:lower() == 'w' then
  880.                         CONTROL.F = 0
  881.                     elseif KEY:lower() == 's' then
  882.                         CONTROL.B = 0
  883.                     elseif KEY:lower() == 'a' then
  884.                         CONTROL.L = 0
  885.                     elseif KEY:lower() == 'd' then
  886.                         CONTROL.R = 0
  887.                     end
  888.                 end)
  889.                 fly()
  890.             else
  891.                 flying = false
  892.                 lplayer.Character.Humanoid.PlatformStand = false
  893.             end
  894.        
  895.         mouse.KeyDown:Connect(function(k)
  896.             if k == "123" then
  897.                
  898.                 if flying == false then
  899.                    
  900.                     repeat wait() until lplayer and lplayer.Character and lplayer.Character:FindFirstChild('HumanoidRootPart') and lplayer.Character:FindFirstChild('Humanoid')
  901.                     repeat wait() until mouse
  902.                    
  903.                     local T = lplayer.Character.HumanoidRootPart
  904.                     local CONTROL = {F = 0, B = 0, L = 0, R = 0}
  905.                     local lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  906.                     local SPEED = speedget
  907.                    
  908.                     local function fly()
  909.                         flying = true
  910.                         local BG = Instance.new('BodyGyro', T)
  911.                         local BV = Instance.new('BodyVelocity', T)
  912.                         BG.P = 9e4
  913.                         BG.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  914.                         BG.cframe = T.CFrame
  915.                         BV.velocity = Vector3.new(0, 0.1, 0)
  916.                         BV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  917.                         spawn(function()
  918.                         repeat wait()
  919.                         lplayer.Character.Humanoid.PlatformStand = true
  920.                         if CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0 then
  921.                             SPEED = 50
  922.                         elseif not (CONTROL.L + CONTROL.R ~= 0 or CONTROL.F + CONTROL.B ~= 0) and SPEED ~= 0 then
  923.                             SPEED = 0
  924.                         end
  925.                         if (CONTROL.L + CONTROL.R) ~= 0 or (CONTROL.F + CONTROL.B) ~= 0 then
  926.                             BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (CONTROL.F + CONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(CONTROL.L + CONTROL.R, (CONTROL.F + CONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  927.                             lCONTROL = {F = CONTROL.F, B = CONTROL.B, L = CONTROL.L, R = CONTROL.R}
  928.                         elseif (CONTROL.L + CONTROL.R) == 0 and (CONTROL.F + CONTROL.B) == 0 and SPEED ~= 0 then
  929.                             BV.velocity = ((workspace.CurrentCamera.CoordinateFrame.lookVector * (lCONTROL.F + lCONTROL.B)) + ((workspace.CurrentCamera.CoordinateFrame * CFrame.new(lCONTROL.L + lCONTROL.R, (lCONTROL.F + lCONTROL.B) * 0.2, 0).p) - workspace.CurrentCamera.CoordinateFrame.p)) * SPEED
  930.                         else
  931.                             BV.velocity = Vector3.new(0, 0.1, 0)
  932.                         end
  933.                         BG.cframe = workspace.CurrentCamera.CoordinateFrame
  934.                         until not flying
  935.                             CONTROL = {F = 0, B = 0, L = 0, R = 0}
  936.                             lCONTROL = {F = 0, B = 0, L = 0, R = 0}
  937.                             SPEED = 0
  938.                             BG:destroy()
  939.                             BV:destroy()
  940.                             lplayer.Character.Humanoid.PlatformStand = false
  941.                         end)
  942.                     end
  943.                     mouse.KeyDown:connect(function(KEY)
  944.                         if KEY:lower() == 'w' then
  945.                             CONTROL.F = speedfly
  946.                         elseif KEY:lower() == 's' then
  947.                             CONTROL.B = -speedfly
  948.                         elseif KEY:lower() == 'a' then
  949.                             CONTROL.L = -speedfly
  950.                         elseif KEY:lower() == 'd' then
  951.                             CONTROL.R = speedfly
  952.                         end
  953.                     end)
  954.                     mouse.KeyUp:connect(function(KEY)
  955.                         if KEY:lower() == 'w' then
  956.                             CONTROL.F = 0
  957.                         elseif KEY:lower() == 's' then
  958.                             CONTROL.B = 0
  959.                         elseif KEY:lower() == 'a' then
  960.                             CONTROL.L = 0
  961.                         elseif KEY:lower() == 'd' then
  962.                             CONTROL.R = 0
  963.                         end
  964.                     end)
  965.                     fly()
  966.                 else
  967.                     flying = false
  968.                     lplayer.Character.Humanoid.PlatformStand = false
  969.                 end
  970.                
  971.             end
  972.         end)
  973.         end
  974.     end)
  975.     --
  976.     wait(0.1)
  977.     fly.TextColor3 = Color3.fromRGB(87, 135, 72)
  978.     fly.Text = "Loaded"
  979.     wait(1)
  980.     fly.TextColor3 = Color3.fromRGB(133, 133, 133)
  981.     fly.Text = "Fly"
  982. end)
  983.  
  984.     --Infinite Jump--
  985.  
  986. infinitejump.MouseButton1Click:Connect(function()
  987.     infinitejump.Text = "Loading"
  988.     infinitejump.TextColor3 = Color3.fromRGB(150, 150, 0)
  989.     --
  990.     _G.infinjump = false
  991.      
  992.     mouse.KeyDown:Connect(function(k)
  993.         if _G.infinjump then
  994.             if k:byte() == 32 then
  995.                 local Humanoid = player.Character.Humanoid
  996.                 Humanoid:ChangeState("Jumping")
  997.                 wait(0.1)
  998.                 Humanoid:ChangeState("Seated")
  999.             end
  1000.         end
  1001.     end)
  1002.      
  1003.     mouse.KeyDown:Connect(function(k)
  1004.         k = k:lower()
  1005.         if k == "r" then
  1006.             _G.infinjump = not _G.infinjump
  1007.         end
  1008.     end)
  1009.     --
  1010.     wait(0.1)
  1011.     infinitejump.TextColor3 = Color3.fromRGB(87, 135, 72)
  1012.     infinitejump.Text = "Loaded"
  1013.     wait(1)
  1014.     infinitejump.TextColor3 = Color3.fromRGB(133, 133, 133)
  1015.     infinitejump.Text = "Infinite Jump"
  1016. end)
  1017.  
  1018.     --Building Tools--
  1019.  
  1020. btools.MouseButton1Click:Connect(function()
  1021.     btools.Text = "Loading"
  1022.     btools.TextColor3 = Color3.fromRGB(150, 150, 0)
  1023.     --
  1024.     game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  1025.         for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  1026.             if child.ClassName == "Part" then
  1027.                 child.Locked = false
  1028.             end
  1029.            
  1030.             if child.ClassName == "MeshPart" then
  1031.                 child.Locked = false
  1032.             end
  1033.            
  1034.             if child.ClassName == "UnionOperation" then
  1035.                 child.Locked = false
  1036.             end
  1037.            
  1038.             if child.ClassName == "Model" then
  1039.                 for index, chil in pairs(child:GetChildren()) do
  1040.                     if chil.ClassName == "Part" then
  1041.                         chil.Locked = false
  1042.                     end
  1043.                    
  1044.                     if chil.ClassName == "MeshPart" then
  1045.                         chil.Locked = false
  1046.                     end
  1047.                    
  1048.                     if chil.ClassName == "UnionOperation" then
  1049.                         chil.Locked = false
  1050.                     end
  1051.                    
  1052.                     if chil.ClassName == "Model" then
  1053.                         for index, childe in pairs(chil:GetChildren()) do
  1054.                             if childe.ClassName == "Part" then
  1055.                                 childe.Locked = false
  1056.                             end
  1057.                            
  1058.                             if childe.ClassName == "MeshPart" then
  1059.                                 childe.Locked = false
  1060.                             end
  1061.                    
  1062.                             if childe.ClassName == "UnionOperation" then
  1063.                                 childe.Locked = false
  1064.                             end
  1065.                    
  1066.                             if childe.ClassName == "Model" then
  1067.                                 for index, childeo in pairs(childe:GetChildren()) do
  1068.                                     if childeo.ClassName == "Part" then
  1069.                                     childeo.Locked = false
  1070.                                 end
  1071.                            
  1072.                                 if childeo.ClassName == "MeshPart" then
  1073.                                     childeo.Locked = false
  1074.                                 end
  1075.                            
  1076.                                 if childeo.ClassName == "UnionOperation" then
  1077.                                     childeo.Locked = false
  1078.                                 end
  1079.                            
  1080.                                 if childeo.ClassName == "Model" then
  1081.                                     print("childeo is a Model.")
  1082.                                 end
  1083.                             end
  1084.                         end
  1085.                     end
  1086.                 end
  1087.             end    
  1088.         end
  1089.     end
  1090.  
  1091.     c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) -- Destroy (Hammer)
  1092.     c.BinType = Enum.BinType.Hammer
  1093.     c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) -- Clone (Magic Wand)
  1094.     c.BinType = Enum.BinType.Clone
  1095.     c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack) -- Grab (Hand)
  1096.     c.BinType = Enum.BinType.Grab
  1097.     --
  1098.     wait(0.1)
  1099.     btools.TextColor3 = Color3.fromRGB(87, 135, 72)
  1100.     btools.Text = "Loaded"
  1101.     wait(1)
  1102.     btools.TextColor3 = Color3.fromRGB(133, 133, 133)
  1103.     btools.Text = "BTools"
  1104. end)
  1105.  
  1106.     --WalkSpeed--
  1107.  
  1108. walkspeed.MouseButton1Click:Connect(function()
  1109.     WsOpened = not WsOpened
  1110.  
  1111.     if WsOpened == false then
  1112.         color2:Play()
  1113.         create11:Play()
  1114.         Underline_6:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1115.         createtext2:Play()
  1116.         create16:Play()
  1117.         create18:Play()
  1118.         create20:Play()
  1119.         create22:Play()
  1120.         WalkSpeed:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  1121.         wait(0.5)
  1122.         WalkSpeed.Visible = false
  1123.     elseif WsOpened == true then
  1124.         color1:Play()
  1125.         create12:Play()
  1126.         Underline_6:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1127.         createtext1:Play()
  1128.         WalkSpeed.Visible = true
  1129.         create17:Play()
  1130.         create19:Play()
  1131.         create21:Play()
  1132.         create23:Play()
  1133.         WalkSpeed:TweenPosition(UDim2.new(0, 0, 0.884, 0), "Out", "Quad", 0.25)
  1134.     end
  1135. end)
  1136.  
  1137. walkspeed.MouseButton1Click:Connect(function()
  1138.     if WsOpened == true then
  1139.         --TpClose()
  1140.         --JpClose()
  1141.     end
  1142. end)
  1143.  
  1144. Set_2.MouseButton1Click:Connect(function()
  1145.     humanoid.WalkSpeed = Input_2.Text
  1146. end)
  1147.  
  1148. Reset_2.MouseButton1Click:Connect(function()
  1149.     humanoid.WalkSpeed = game.StarterPlayer.CharacterWalkSpeed
  1150. end)
  1151.  
  1152. walkspeed.MouseEnter:Connect(function()
  1153.     create12:Play()
  1154.     Underline_6:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1155. end)
  1156.  
  1157. walkspeed.MouseLeave:Connect(function()
  1158.     if WsOpened == false then
  1159.         create11:Play()
  1160.         Underline_6:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1161.     end
  1162. end)
  1163.  
  1164.     --JumpPower--
  1165.  
  1166. jumppower.MouseButton1Click:Connect(function()
  1167.     JpOpened = not JpOpened
  1168.  
  1169.     if JpOpened == false then
  1170.         color4:Play()
  1171.         create9:Play()
  1172.         Underline_5:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1173.         createtext2:Play()
  1174.         create30:Play()
  1175.         create32:Play()
  1176.         create34:Play()
  1177.         create36:Play()
  1178.         JumpPower:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  1179.         wait(0.5)
  1180.         JumpPower.Visible = false
  1181.     elseif JpOpened == true then
  1182.         color3:Play()
  1183.         create10:Play()
  1184.         Underline_5:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1185.         createtext1:Play()
  1186.         JumpPower.Visible = true
  1187.         create31:Play()
  1188.         create33:Play()
  1189.         create35:Play()
  1190.         create37:Play()
  1191.         JumpPower:TweenPosition(UDim2.new(0, 0, 0.884, 0), "Out", "Quad", 0.25)
  1192.     end
  1193. end)
  1194.  
  1195. jumppower.MouseButton1Click:Connect(function()
  1196.     if JpOpened == true then
  1197.         --WsClose()
  1198.         --TpClose()
  1199.     end
  1200. end)
  1201.  
  1202. Set.MouseButton1Click:Connect(function()
  1203.     humanoid.JumpPower = Input.Text
  1204. end)
  1205.  
  1206. Reset.MouseButton1Click:Connect(function()
  1207.     humanoid.JumpPower = game.StarterPlayer.CharacterJumpPower
  1208. end)
  1209.  
  1210. jumppower.MouseEnter:Connect(function()
  1211.     create10:Play()
  1212.     Underline_5:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1213. end)
  1214.  
  1215. jumppower.MouseLeave:Connect(function()
  1216.     if JpOpened == false then
  1217.         create9:Play()
  1218.         Underline_5:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1219.     end
  1220. end)
  1221.  
  1222.     --Teleport--
  1223.  
  1224. teleport.MouseButton1Click:Connect(function()
  1225.     TpOpened = not TpOpened
  1226.  
  1227.     if TpOpened == false then
  1228.         color6:Play()
  1229.         create14:Play()
  1230.         Underline_8:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1231.         createtext2:Play()
  1232.         create24:Play()
  1233.         create26:Play()
  1234.         create28:Play()
  1235.         Teleport:TweenPosition(UDim2.new(0, 0, 0.562, 0), "Out", "Quad", 0.25)
  1236.         wait(0.5)
  1237.         Teleport.Visible = false
  1238.     elseif TpOpened == true then
  1239.         color5:Play()
  1240.         create15:Play()
  1241.         Underline_8:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1242.         createtext1:Play()
  1243.         Teleport.Visible = true
  1244.         create25:Play()
  1245.         create27:Play()
  1246.         create29:Play()
  1247.         Teleport:TweenPosition(UDim2.new(0, 0, 0.884, 0), "Out", "Quad", 0.25)
  1248.     end
  1249. end)
  1250.  
  1251. teleport.MouseButton1Click:Connect(function()
  1252.     if TpOpened == true then
  1253.         --WsClose()
  1254.         --JpClose()
  1255.     end
  1256. end)
  1257.  
  1258. Set_3.MouseButton1Click:Connect(function()
  1259.     local Victim = Input_3.Text
  1260.     player.Character.HumanoidRootPart.CFrame = game.Players[Victim].Character.HumanoidRootPart.CFrame
  1261. end)
  1262.  
  1263.     --Underlines--
  1264.  
  1265. teleport.MouseEnter:Connect(function()
  1266.     create15:Play()
  1267.     Underline_8:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1268. end)
  1269.  
  1270. teleport.MouseLeave:Connect(function()
  1271.     if TpOpened == false then
  1272.         create14:Play()
  1273.         Underline_8:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1274.     end
  1275. end)
  1276.  
  1277. noclip.MouseEnter:Connect(function()
  1278.     create2:Play()
  1279.     Underline:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1280. end)
  1281.  
  1282. noclip.MouseLeave:Connect(function()
  1283.     Underline:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1284.     create1:Play()
  1285. end)
  1286.  
  1287. noclip.AutoButtonColor = false
  1288.  
  1289. clicktp.MouseEnter:Connect(function()
  1290.     create4:Play()
  1291.     Underline_2:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1292. end)
  1293.  
  1294. clicktp.MouseLeave:Connect(function()
  1295.     Underline_2:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1296.     create3:Play()
  1297. end)
  1298.  
  1299. clicktp.AutoButtonColor = false
  1300.  
  1301. fly.MouseEnter:Connect(function()
  1302.     create6:Play()
  1303.     Underline_3:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1304. end)
  1305.  
  1306. fly.MouseLeave:Connect(function()
  1307.     Underline_3:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1308.     create5:Play()
  1309. end)
  1310.  
  1311. fly.AutoButtonColor = false
  1312.  
  1313. infinitejump.MouseEnter:Connect(function()
  1314.     create8:Play()
  1315.     Underline_4:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1316. end)
  1317.  
  1318. infinitejump.MouseLeave:Connect(function()
  1319.     Underline_4:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1320.     create7:Play()
  1321. end)
  1322.  
  1323. infinitejump.AutoButtonColor = false
  1324.  
  1325. btools.MouseEnter:Connect(function()
  1326.     create131:Play()
  1327.     Underline_7:TweenSize(UDim2.new(0, 70, 0, 1), "Out", "Sine", .1)
  1328. end)
  1329.  
  1330. btools.MouseLeave:Connect(function()
  1331.     Underline_7:TweenSize(UDim2.new(0, 0, 0, 1), "Out", "Sine", .1)
  1332.     create13:Play()
  1333. end)
  1334.  
  1335. btools.AutoButtonColor = false
  1336. walkspeed.AutoButtonColor = false
  1337. jumppower.AutoButtonColor = false
  1338. teleport.AutoButtonColor = false
  1339.  
  1340.     --Intro--
  1341.  
  1342. wait(0.5)
  1343.  
  1344. Intro()
  1345.  
  1346. --// _ Notification _ \\--
  1347.  
  1348. game:GetService("StarterGui"):SetCore("SendNotification",{
  1349.     Title = "Simple Scripts";
  1350.     Text = 'Press "Y" to print a list of commands, check output.';
  1351.     Icon = "rbxassetid://5319664937";
  1352.     Duration = 3;
  1353. })
  1354.  
  1355. game:GetService("StarterGui"):SetCore("SendNotification",{
  1356.     Title = "Simple Scripts";
  1357.     Text = "Simple v2.6 has successfully loaded!";
  1358.     Icon = "rbxassetid://5319664937";
  1359.     Duration = 99999;
  1360.     Button1 = "OK";
  1361. })
  1362.  
  1363. end)
  1364.  
  1365. -- Ubicast ♡
Add Comment
Please, Sign In to add comment