uor

Dragon ball n script (updated again??)

uor
Aug 29th, 2021 (edited)
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 42.08 KB | None | 0 0
  1. --Original thread: https://v3rmillion.net/showthread.php?tid=1083897
  2. _G.key = Enum.KeyCode.LeftControl -- Change to whatever if you don't know Keycode go to roblox api doc
  3.  
  4. loadstring(game:HttpGet("https://paste.gg/p/anonymous/cb1c7198b269449eb8a2cf8ced061bed/files/4a98e88f82ee47388b3030a7f000b34e/raw", true))()
  5.  
  6. local stationaryrespawn = false
  7. local needsrespawning = false
  8. local haspos = false
  9. local pos = CFrame.new()
  10.  
  11. local Respawning = Instance.new("ScreenGui")
  12. local RespawningButton = Instance.new("TextButton")
  13.  
  14. Respawning.Name = "Respawning"
  15. Respawning.Parent = game.CoreGui
  16.  
  17.  
  18.  
  19. RespawningButton.Name = "RespawningButton"
  20. RespawningButton.Parent = Respawning
  21. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  22. RespawningButton.BackgroundTransparency = 0.30000001192093
  23. RespawningButton.BorderSizePixel = 0
  24. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  25. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  26. RespawningButton.Font = Enum.Font.SourceSans
  27. RespawningButton.Text = "Not Returning"
  28. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  29. RespawningButton.TextSize = 20
  30. RespawningButton.TextScaled = true
  31. RespawningButton.Draggable = true
  32.  
  33.  
  34.  
  35.  
  36. function StatRespawn(inputObject, gameProcessedEvent)
  37. if inputObject.KeyCode == Enum.KeyCode.N and gameProcessedEvent == false then
  38. stationaryrespawn = not stationaryrespawn
  39. end
  40. end
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. game:GetService("UserInputService").InputBegan:connect(StatRespawn)
  48.  
  49.  
  50.  
  51. game:GetService('RunService').Stepped:connect(function()
  52.  
  53.  
  54. if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  55. if haspos == false then
  56. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  57. haspos = true
  58. end
  59.  
  60. needsrespawning = true
  61. end
  62.  
  63.  
  64. if needsrespawning == true then
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  66. end
  67.  
  68.  
  69. if stationaryrespawn == true then
  70. RespawningButton.Text = "Returning"
  71. else
  72. RespawningButton.Text = "Not Returning"
  73. end
  74.  
  75.  
  76. end)
  77.  
  78. game.Players.LocalPlayer.CharacterAdded:connect(function()
  79. wait(0.4)
  80. needsrespawning = false
  81. haspos = false
  82. end)
  83.  
  84. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  85. Text = "[Notice] GUI Made by username 1000hack";
  86. Color = Color3.new(255, 0, 72);
  87. Font = Enum.Font.SourceSansBold;
  88. FontSize = Enum.FontSize.Size24;
  89. })
  90.  
  91. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  92. Text = "[Warning] dont get banned using this on ur main use on alts";
  93. Color = Color3.new(255, 0, 0);
  94. Font = Enum.Font.SourceSansBold;
  95. FontSize = Enum.FontSize.Size24;
  96. })
  97.  
  98.  
  99. local SkidParkour = Instance.new("ScreenGui")
  100. local Main = Instance.new("Frame")
  101. local Functions = Instance.new("Frame")
  102. local CTP = Instance.new("TextButton")
  103. local NameESP = Instance.new("TextButton")
  104. local TPBACK = Instance.new("TextButton")
  105. local TPORB = Instance.new("TextButton")
  106. local TPPlayer = Instance.new("TextButton")
  107. local InputPlayer = Instance.new("TextBox")
  108. local NoFall = Instance.new("TextButton")
  109. local Walkspeed = Instance.new("TextButton")
  110. local Btools = Instance.new("TextButton")
  111. local Gravity = Instance.new("TextButton")
  112. local Settings = Instance.new("Frame")
  113. local WhiteBackground = Instance.new("Frame")
  114. local FormCheck = Instance.new("Frame")
  115. local Form = Instance.new("TextLabel")
  116. local White = Instance.new("TextLabel")
  117. local del = Instance.new("TextButton")
  118. local Credits = Instance.new("Frame")
  119. local Outer = Instance.new("ImageLabel")
  120. local Discord = Instance.new("TextLabel")
  121. local Alone = Instance.new("ImageLabel")
  122. local Discord_2 = Instance.new("TextLabel")
  123. local ROexploits = Instance.new("ImageLabel")
  124. local Discord_3 = Instance.new("TextLabel")
  125. local TextLabel = Instance.new("TextLabel")
  126. local TabList = Instance.new("Frame")
  127. local FunctionsBTN = Instance.new("TextButton")
  128. local SettingsBTN = Instance.new("TextButton")
  129. local CreditsBTN_2 = Instance.new("TextButton")
  130. local Title = Instance.new("TextLabel")
  131. local Close = Instance.new("TextButton")
  132.  
  133. SkidParkour.Name = "SkidParkour"
  134. SkidParkour.Parent = game.CoreGui
  135.  
  136. Main.Name = "Main"
  137. Main.Parent = SkidParkour
  138. Main.Active = true
  139. Main.Draggable = true
  140. Main.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  141. Main.BackgroundTransparency = 1
  142. Main.BorderSizePixel = 0
  143. Main.Position = UDim2.new(0.26029411, 0, 0.32432431, 0)
  144. Main.Size = UDim2.new(0, 676, 0, 323)
  145.  
  146. Functions.Name = "Functions"
  147. Functions.Parent = Main
  148. Functions.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  149. Functions.BorderSizePixel = 0
  150. Functions.Size = UDim2.new(0, 676, 0, 285)
  151. Functions.Visible = true
  152.  
  153. CTP.Name = "CTP"
  154. CTP.Parent = Functions
  155. CTP.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  156. CTP.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  157. CTP.Position = UDim2.new(0.0695266277, 0, 0.259649128, 0)
  158. CTP.Size = UDim2.new(0, 112, 0, 24)
  159. CTP.Font = Enum.Font.SourceSansLight
  160. CTP.Text = "Click TP [Q]"
  161. CTP.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  162. CTP.TextSize = 18
  163. CTP.MouseButton1Click:connect(function()
  164. plr = game.Players.LocalPlayer;
  165. hum = plr.Character.HumanoidRootPart;
  166. mouse = plr:GetMouse()
  167. mouse.KeyDown:connect(function(aa)
  168. if aa == "q" then
  169. if mouse.Target then
  170. hum.CFrame = CFrame.new(mouse.Hit.z, mouse.Hit.y + 5, mouse.Hit.z)
  171. end
  172. end
  173. end)
  174. end)
  175.  
  176. NameESP.Name = "NameESP"
  177. NameESP.Parent = Functions
  178. NameESP.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  179. NameESP.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  180. NameESP.Position = UDim2.new(0.0695266277, 0, 0.3859649, 0)
  181. NameESP.Size = UDim2.new(0, 112, 0, 24)
  182. NameESP.Font = Enum.Font.SourceSansLight
  183. NameESP.Text = "Name ESP"
  184. NameESP.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  185. NameESP.TextSize = 18
  186. NameESP.MouseButton1Click:connect(function()
  187. Important = {
  188. Players = game:GetService("Players"),
  189. Workspace = game:GetService("Workspace"),
  190. CoreGui = game:WaitForChild("CoreGui")
  191. }
  192. local ai = false;
  193. function CreateESP(plr)
  194. if plr ~= nil then
  195. local aj = plr.Character;
  196. if not aj then
  197. return
  198. end;
  199. local ak;
  200. do
  201. repeat
  202. wait()
  203. until aj:FindFirstChild("Head")
  204. end;
  205. ak = aj.Head;
  206. local al = Instance.new("BillboardGui", Important.CoreGui)
  207. al.Adornee = ak;
  208. al.ExtentsOffset = Vector3.new(0, 1, 0)
  209. al.AlwaysOnTop = true;
  210. al.Size = UDim2.new(0, 5, 0, 5)
  211. al.StudsOffset = Vector3.new(0, 3, 0)
  212. al.Name = "ESP_PLAYER_"..plr.Name;
  213. local am = Instance.new("Frame", al)
  214. am.ZIndex = 10;
  215. am.BackgroundTransparency = 1;
  216. am.Size = UDim2.new(1, 0, 1, 0)
  217. local an = Instance.new("TextLabel", am)
  218. an.Name = "Name"
  219. an.ZIndex = 10;
  220. an.Text = plr.Name;
  221. an.Visible = true;
  222. an.TextColor3 = Color3.new(255, 45, 126)
  223. an.BackgroundTransparency = 1;
  224. an.Size = UDim2.new(1, 0, 10, 0)
  225. an.Font = Enum.Font.SourceSansLight;
  226. an.TextSize = 20;
  227. an.TextStrokeTransparency = .5
  228. end
  229. end;
  230. for ag, ah in pairs(Important.Players:GetChildren()) do
  231. if game.GameId == 445664957 then
  232. return
  233. end;
  234. CreateESP(ah)
  235. end
  236. end)
  237.  
  238. TPBACK.Name = "TPBACK"
  239. TPBACK.Parent = Functions
  240. TPBACK.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  241. TPBACK.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  242. TPBACK.Position = UDim2.new(0.0695266277, 0, 0.519298255, 0)
  243. TPBACK.Size = UDim2.new(0, 112, 0, 24)
  244. TPBACK.Font = Enum.Font.SourceSansLight
  245. TPBACK.Text = "TP to backpacks"
  246. TPBACK.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  247. TPBACK.TextSize = 18
  248.  
  249. TPORB.Name = "TPORB"
  250. TPORB.Parent = Functions
  251. TPORB.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  252. TPORB.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  253. TPORB.Position = UDim2.new(0.0695266277, 0, 0.65263164, 0)
  254. TPORB.Size = UDim2.new(0, 112, 0, 24)
  255. TPORB.Font = Enum.Font.SourceSansLight
  256. TPORB.Text = "TP to Orbs"
  257. TPORB.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  258. TPORB.TextSize = 18
  259.  
  260. TPPlayer.Name = "TPPlayer"
  261. TPPlayer.Parent = Functions
  262. TPPlayer.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  263. TPPlayer.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  264. TPPlayer.Position = UDim2.new(0.334319532, 0, 0.519298255, 0)
  265. TPPlayer.Size = UDim2.new(0, 183, 0, 36)
  266. TPPlayer.Font = Enum.Font.SourceSansLight
  267. TPPlayer.Text = "TP To Player"
  268. TPPlayer.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  269. TPPlayer.TextSize = 18
  270. TPPlayer.MouseButton1Down:connect(function()
  271. local tp_namedplayer = InputPlayer.Text
  272. local tp_player = game:GetService("Players")[tp_namedplayer]
  273. local PLR = game:GetService("Players").LocalPlayer
  274. local p = InputPlayer.Text
  275.  
  276. if tp_player then
  277. for i = 1,2 do
  278. wait(.08)
  279. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  280. end
  281. end
  282. end)
  283.  
  284. InputPlayer.Name = "InputPlayer"
  285. InputPlayer.Parent = Functions
  286. InputPlayer.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  287. InputPlayer.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  288. InputPlayer.Position = UDim2.new(0.334319532, 0, 0.343859643, 0)
  289. InputPlayer.Size = UDim2.new(0, 182, 0, 35)
  290. InputPlayer.Font = Enum.Font.SourceSans
  291. InputPlayer.PlaceholderColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  292. InputPlayer.PlaceholderText = "199, 199, 199"
  293. InputPlayer.Text = "InputPlayer"
  294. InputPlayer.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  295. InputPlayer.TextSize = 16
  296.  
  297.  
  298. NoFall.Name = "No Fall"
  299. NoFall.Parent = Functions
  300. NoFall.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  301. NoFall.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  302. NoFall.Position = UDim2.new(0.0695266277, 0, 0.789473653, 0)
  303. NoFall.Size = UDim2.new(0, 112, 0, 24)
  304. NoFall.Font = Enum.Font.SourceSansLight
  305. NoFall.Text = "No Fall"
  306. NoFall.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  307. NoFall.TextSize = 18
  308. local InfiniteJumpEnabled = true
  309. game:GetService("UserInputService").JumpRequest:connect(function()
  310. if InfiniteJumpEnabled == true then
  311. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  312. if InfiniteJumpEnabled == false then
  313. end
  314. end
  315. end)
  316.  
  317. Walkspeed.Name = "Hit while moving"
  318. Walkspeed.Parent = Functions
  319. Walkspeed.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  320. Walkspeed.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  321. Walkspeed.Position = UDim2.new(0.69970417, 0, 0.259649128, 0)
  322. Walkspeed.Size = UDim2.new(0, 113, 0, 24)
  323. Walkspeed.Font = Enum.Font.SourceSansLight
  324. Walkspeed.Text = "Speed [E]"
  325. Walkspeed.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  326. Walkspeed.TextSize = 18
  327. Walkspeed.MouseButton1Down:connect(function()
  328. local walkspeedplayer = game:GetService("Players").LocalPlayer
  329. local walkspeedmouse = walkspeedplayer:GetMouse()
  330.  
  331. local walkspeedenabled = false
  332.  
  333. function x_walkspeed(key)
  334. if (key == "e") then
  335. if walkspeedenabled == false then
  336. _G.WS = 16;
  337. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  338. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  339. Humanoid.WalkSpeed = _G.WS;
  340. end)
  341. Humanoid.WalkSpeed = _G.WS;
  342.  
  343. walkspeedenabled = true
  344. elseif walkspeedenabled == true then
  345. _G.WS = 16;
  346. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  347. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  348. Humanoid.WalkSpeed = _G.WS;
  349. end)
  350. Humanoid.WalkSpeed = _G.WS;
  351.  
  352. walkspeedenabled = false
  353. end
  354. end
  355. end
  356.  
  357. walkspeedmouse.KeyDown:connect(x_walkspeed)
  358.  
  359. end)
  360.  
  361. Btools.Name = "Btools"
  362. Btools.Parent = Functions
  363. Btools.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  364. Btools.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  365. Btools.Position = UDim2.new(0.69970417, 0, 0.3859649, 0)
  366. Btools.Size = UDim2.new(0, 113, 0, 24)
  367. Btools.Font = Enum.Font.SourceSansLight
  368. Btools.Text = "Btools"
  369. Btools.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  370. Btools.TextSize = 18
  371. Btools.MouseButton1Down:connect(function()
  372. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  373. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  374. if child.ClassName == "Part" then
  375. child.Locked = false
  376. end
  377. if child.ClassName == "MeshPart" then
  378. child.Locked = false
  379. end
  380. if child.ClassName == "UnionOperation" then
  381. child.Locked = false
  382. end
  383. if child.ClassName == "Model" then
  384. for index, chil in pairs(child:GetChildren()) do
  385. if chil.ClassName == "Part" then
  386. chil.Locked = false
  387. end
  388. if chil.ClassName == "MeshPart" then
  389. chil.Locked = false
  390. end
  391. if chil.ClassName == "UnionOperation" then
  392. chil.Locked = false
  393. end
  394. if chil.ClassName == "Model" then
  395. for index, childe in pairs(chil:GetChildren()) do
  396. if childe.ClassName == "Part" then
  397. childe.Locked = false
  398. end
  399. if childe.ClassName == "MeshPart" then
  400. childe.Locked = false
  401. end
  402. if childe.ClassName == "UnionOperation" then
  403. childe.Locked = false
  404. end
  405. if childe.ClassName == "Model" then
  406. for index, childeo in pairs(childe:GetChildren()) do
  407. if childeo.ClassName == "Part" then
  408. childeo.Locked = false
  409. end
  410. if childeo.ClassName == "MeshPart" then
  411. childeo.Locked = false
  412. end
  413. if childeo.ClassName == "UnionOperation" then
  414. childeo.Locked = false
  415. end
  416. if childeo.ClassName == "Model" then
  417. end
  418. end
  419. end
  420. end
  421. end
  422. end
  423. end
  424. end
  425. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  426. c.BinType = Enum.BinType.Hammer
  427. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  428. c.BinType = Enum.BinType.Clone
  429. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  430. c.BinType = Enum.BinType.Grab
  431. end)
  432.  
  433.  
  434. Gravity.Name = "Gravity"
  435. Gravity.Parent = Functions
  436. Gravity.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  437. Gravity.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  438. Gravity.Position = UDim2.new(0.69970417, 0, 0.519298255, 0)
  439. Gravity.Size = UDim2.new(0, 113, 0, 24)
  440. Gravity.Font = Enum.Font.SourceSansLight
  441. Gravity.Text = "Gravity"
  442. Gravity.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  443. Gravity.TextSize = 18
  444. Gravity.MouseButton1Down:connect(function()
  445. if Gravity == true then
  446. Gravity = false
  447. game.workspace.Gravity = 90
  448. else
  449. Gravity = true
  450. game.workspace.Gravity = 45
  451. end
  452. end)
  453.  
  454. Settings.Name = "Settings"
  455. Settings.Parent = Main
  456. Settings.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  457. Settings.BorderSizePixel = 0
  458. Settings.Size = UDim2.new(0, 676, 0, 285)
  459. Settings.Visible = false
  460.  
  461. WhiteBackground.Name = "WhiteBackground"
  462. WhiteBackground.Parent = Settings
  463. WhiteBackground.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  464. WhiteBackground.BorderSizePixel = 0
  465. WhiteBackground.Position = UDim2.new(0.0325443782, 0, 0.228070185, 0)
  466. WhiteBackground.Size = UDim2.new(0, 18, 0, 18)
  467.  
  468. FormCheck.Name = "FormCheck"
  469. FormCheck.Parent = Settings
  470. FormCheck.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  471. FormCheck.BorderSizePixel = 0
  472. FormCheck.Position = UDim2.new(0.0325443782, 0, 0.105263159, 0)
  473. FormCheck.Size = UDim2.new(0, 18, 0, 18)
  474.  
  475. Form.Name = "Form"
  476. Form.Parent = Settings
  477. Form.BackgroundColor3 = Color3.new(1, 1, 1)
  478. Form.BackgroundTransparency = 1
  479. Form.Position = UDim2.new(0.0719999969, 0, 0.112999998, 0)
  480. Form.Size = UDim2.new(0, 113, 0, 12)
  481. Form.Font = Enum.Font.SourceSans
  482. Form.Text = "Enable Form Dragging"
  483. Form.TextColor3 = Color3.new(0.815686, 0.835294, 0.901961)
  484. Form.TextSize = 15
  485.  
  486. White.Name = "White"
  487. White.Parent = Settings
  488. White.BackgroundColor3 = Color3.new(1, 1, 1)
  489. White.BackgroundTransparency = 1
  490. White.Position = UDim2.new(0.0591716208, 0, 0.225999996, 0)
  491. White.Size = UDim2.new(0, 106, 0, 18)
  492. White.Font = Enum.Font.SourceSans
  493. White.Text = "White Background"
  494. White.TextColor3 = Color3.new(0.815686, 0.835294, 0.901961)
  495. White.TextSize = 15
  496.  
  497. del.Name = "del"
  498. del.Parent = Settings
  499. del.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  500. del.BorderColor3 = Color3.new(0.356863, 0.388235, 0.470588)
  501. del.Position = UDim2.new(0.0325443782, 0, 0.824561417, 0)
  502. del.Size = UDim2.new(0, 124, 0, 25)
  503. del.Font = Enum.Font.SourceSansLight
  504. del.Text = "Un-Inject GUI"
  505. del.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  506. del.TextSize = 20
  507. del.MouseButton1Down:connect(function()
  508. Main:Destroy()
  509. end)
  510.  
  511.  
  512. Credits.Name = "Credits"
  513. Credits.Parent = Main
  514. Credits.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  515. Credits.BorderSizePixel = 0
  516. Credits.Size = UDim2.new(0, 676, 0, 285)
  517. Credits.Visible = false
  518.  
  519. Outer.Name = "Outer"
  520. Outer.Parent = Credits
  521. Outer.BackgroundColor3 = Color3.new(1, 1, 1)
  522. Outer.Position = UDim2.new(0.0828402266, 0, 0.280701756, 0)
  523. Outer.Size = UDim2.new(0, 126, 0, 125)
  524. Outer.Image = "rbxassetid://2418005428"
  525.  
  526. Discord.Name = "Discord"
  527. Discord.Parent = Outer
  528. Discord.BackgroundColor3 = Color3.new(1, 1, 1)
  529. Discord.BackgroundTransparency = 100
  530. Discord.Position = UDim2.new(-0.206349224, 0, 1.07200003, 0)
  531. Discord.Size = UDim2.new(0, 177, 0, 50)
  532. Discord.Font = Enum.Font.SourceSansItalic
  533. Discord.Text = "Helper: Outer in a bag#0001"
  534. Discord.TextColor3 = Color3.new(1, 0.168627, 0.847059)
  535. Discord.TextSize = 19
  536.  
  537. Alone.Name = "Alone"
  538. Alone.Parent = Credits
  539. Alone.BackgroundColor3 = Color3.new(0, 0, 0)
  540. Alone.BackgroundTransparency = 1
  541. Alone.Position = UDim2.new(0.386094689, 0, 0.280701756, 0)
  542. Alone.Size = UDim2.new(0, 126, 0, 125)
  543. Alone.Image = "rbxassetid://2418247591"
  544.  
  545. Discord_2.Name = "Discord"
  546. Discord_2.Parent = Alone
  547. Discord_2.BackgroundColor3 = Color3.new(1, 1, 1)
  548. Discord_2.BackgroundTransparency = 100
  549. Discord_2.Position = UDim2.new(-0.0317460299, 0, 1.07200003, 0)
  550. Discord_2.Size = UDim2.new(0, 134, 0, 50)
  551. Discord_2.Font = Enum.Font.SourceSansItalic
  552. Discord_2.Text = "Creator: xAlone#9124"
  553. Discord_2.TextColor3 = Color3.new(1, 0.317647, 0)
  554. Discord_2.TextSize = 19
  555.  
  556. ROexploits.Name = "ROexploits"
  557. ROexploits.Parent = Credits
  558. ROexploits.BackgroundColor3 = Color3.new(0, 0, 0)
  559. ROexploits.BorderSizePixel = 0
  560. ROexploits.Position = UDim2.new(0.692307711, 0, 0.280701756, 0)
  561. ROexploits.Size = UDim2.new(0, 126, 0, 125)
  562. ROexploits.Image = "rbxassetid://2418013975"
  563.  
  564. Discord_3.Name = "Discord"
  565. Discord_3.Parent = ROexploits
  566. Discord_3.BackgroundColor3 = Color3.new(1, 1, 1)
  567. Discord_3.BackgroundTransparency = 100
  568. Discord_3.Position = UDim2.new(-0.198412716, 0, 1.07200003, 0)
  569. Discord_3.Size = UDim2.new(0, 176, 0, 50)
  570. Discord_3.Font = Enum.Font.SourceSansItalic
  571. Discord_3.Text = "Helper: [YT] RoExploits#3605"
  572. Discord_3.TextColor3 = Color3.new(0, 0.333333, 1)
  573. Discord_3.TextSize = 19
  574.  
  575. TextLabel.Parent = Credits
  576. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  577. TextLabel.BackgroundTransparency = 100
  578. TextLabel.Position = UDim2.new(0.331360936, 0, 0, 0)
  579. TextLabel.Size = UDim2.new(0, 200, 0, 38)
  580. TextLabel.Font = Enum.Font.SourceSansItalic
  581. TextLabel.Text = "Credits"
  582. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  583. TextLabel.TextSize = 26
  584.  
  585. TabList.Name = "TabList"
  586. TabList.Parent = Main
  587. TabList.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  588. TabList.BorderSizePixel = 0
  589. TabList.Position = UDim2.new(0, 0, 0.882352948, 0)
  590. TabList.Size = UDim2.new(0, 676, 0, 38)
  591.  
  592. FunctionsBTN.Name = "FunctionsBTN"
  593. FunctionsBTN.Parent = TabList
  594. FunctionsBTN.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  595. FunctionsBTN.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  596. FunctionsBTN.Position = UDim2.new(0.289940834, 0, 0.184210539, 0)
  597. FunctionsBTN.Size = UDim2.new(0, 82, 0, 24)
  598. FunctionsBTN.Font = Enum.Font.SourceSansLight
  599. FunctionsBTN.Text = "Functions"
  600. FunctionsBTN.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  601. FunctionsBTN.TextSize = 20
  602. FunctionsBTN.MouseButton1Down:connect(function()
  603. Functions.Visible = true
  604. Settings.Visibe = false
  605. Credits.Visible = false
  606. end)
  607.  
  608. SettingsBTN.Name = "SettingsBTN"
  609. SettingsBTN.Parent = TabList
  610. SettingsBTN.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  611. SettingsBTN.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  612. SettingsBTN.Position = UDim2.new(0.437869817, 0, 0.184210539, 0)
  613. SettingsBTN.Size = UDim2.new(0, 82, 0, 24)
  614. SettingsBTN.Font = Enum.Font.SourceSansLight
  615. SettingsBTN.Text = "Settings"
  616. SettingsBTN.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  617. SettingsBTN.TextSize = 20
  618. SettingsBTN.MouseButton1Down:connect(function()
  619. Functions.Visible = false
  620. Settings.Visibe = true
  621. Credits.Visible = false
  622. end)
  623.  
  624. CreditsBTN_2.Name = "CreditsBTN"
  625. CreditsBTN_2.Parent = TabList
  626. CreditsBTN_2.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  627. CreditsBTN_2.BorderColor3 = Color3.new(0.470588, 0.513726, 0.623529)
  628. CreditsBTN_2.Position = UDim2.new(0.587278128, 0, 0.184210539, 0)
  629. CreditsBTN_2.Size = UDim2.new(0, 82, 0, 24)
  630. CreditsBTN_2.Font = Enum.Font.SourceSansLight
  631. CreditsBTN_2.Text = "Credits"
  632. CreditsBTN_2.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  633. CreditsBTN_2.TextSize = 20
  634. CreditsBTN_2.MouseButton1Down:connect(function()
  635. Functions.Visible = false
  636. Settings.Visibe = false
  637. Credits.Visible = true
  638. end)
  639.  
  640. Title.Name = "Title"
  641. Title.Parent = TabList
  642. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  643. Title.BackgroundTransparency = 1
  644. Title.Position = UDim2.new(0, 0, 0.184210539, 0)
  645. Title.Size = UDim2.new(0, 111, 0, 25)
  646. Title.Font = Enum.Font.SourceSansLight
  647. Title.Text = "SkidParkour V1"
  648. Title.TextColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  649. Title.TextSize = 14
  650.  
  651. Close.Name = "Close"
  652. Close.Parent = Main
  653. Close.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  654. Close.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  655. Close.BorderSizePixel = 0
  656. Close.Position = UDim2.new(0.96449703, 0, 0, 0)
  657. Close.Size = UDim2.new(0, 24, 0, 24)
  658. Close.Font = Enum.Font.SourceSansLight
  659. Close.Text = "-"
  660. Close.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  661. Close.TextSize = 24
  662. Close.MouseButton1Down:connect(function()
  663. Main.Visible = false
  664. Open.Visible = true
  665. end)
  666.  
  667. -- Dragon Ball N Scripts By christophet5700
  668. -- NOTE I ALREADY MADE A 6.5 VERISON And it reseted so imma add it soon 9/25/2021
  669. -- Version: V5.0
  670. -- U P D A T E S
  671. -- Added Refresh Button [press - to reset press the button]
  672. -- Cooler Gui
  673. -- For My Best Friend vance41510 :)
  674. -- You may Need to Re-Press The Buttons When Death And Chars and Forms
  675. -- PLEASE DONT CHANGE CREDITS!!
  676. -- Instances:
  677.  
  678. local ScreenGui = Instance.new("ScreenGui")
  679. local main = Instance.new("Frame")
  680. local label = Instance.new("TextLabel")
  681. local FreezeScript = Instance.new("TextButton")
  682. local NoCooldownPressIt = Instance.new("TextButton")
  683. local SMALLEXPLORER01PressIt = Instance.new("TextButton")
  684. local label_2 = Instance.new("TextLabel")
  685. local label_3 = Instance.new("TextLabel")
  686. local NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE = Instance.new("TextButton")
  687. local RemoveStunPressItIFSomeoneGlitchedyou = Instance.new("TextButton")
  688. local RefreshButton = Instance.new("TextButton")
  689.  
  690. --Properties:
  691.  
  692. ScreenGui.Parent = game.CoreGui
  693.  
  694. main.Name = "main"
  695. main.Parent = ScreenGui
  696. main.BackgroundColor3 = Color3.fromRGB(77, 77, 77)
  697. main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  698. main.Position = UDim2.new(0.488363057, 0, 0, 0)
  699. main.Size = UDim2.new(0, 326, 0, 454)
  700. main.Active = true
  701. main.Draggable = true
  702.  
  703. label.Name = "label"
  704. label.Parent = main
  705. label.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  706. label.Position = UDim2.new(0.00361193321, 0, 0, 0)
  707. label.Size = UDim2.new(0, 324, 0, 53)
  708. label.Font = Enum.Font.SourceSans
  709. label.Text = "Dragon Ball N Scripts 2021 [V5.0]"
  710. label.TextColor3 = Color3.fromRGB(255, 255, 255)
  711. label.TextSize = 27.000
  712.  
  713. FreezeScript.Name = "Freeze Script"
  714. FreezeScript.Parent = main
  715. FreezeScript.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  716. FreezeScript.Position = UDim2.new(0.00306748459, 0, 0.115483403, 0)
  717. FreezeScript.Size = UDim2.new(0, 325, 0, 50)
  718. FreezeScript.Font = Enum.Font.SourceSans
  719. FreezeScript.Text = "Freeze Script"
  720. FreezeScript.TextColor3 = Color3.fromRGB(85, 255, 244)
  721. FreezeScript.TextSize = 20.000
  722. FreezeScript.MouseButton1Down:connect(function()
  723. game.Players.LocalPlayer.Character["Melee"]:Remove()
  724. end)
  725.  
  726. NoCooldownPressIt.Name = "No Cooldown [Press It]"
  727. NoCooldownPressIt.Parent = main
  728. NoCooldownPressIt.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  729. NoCooldownPressIt.Position = UDim2.new(0, 0, 0.22376509, 0)
  730. NoCooldownPressIt.Size = UDim2.new(0, 326, 0, 50)
  731. NoCooldownPressIt.Font = Enum.Font.SourceSans
  732. NoCooldownPressIt.Text = "No Cooldown [Press It]"
  733. NoCooldownPressIt.TextColor3 = Color3.fromRGB(255, 255, 255)
  734. NoCooldownPressIt.TextSize = 20.000
  735. NoCooldownPressIt.MouseButton1Down:connect(function()
  736. game.Players.LocalPlayer.CurrentForm.Value = 0
  737. end)
  738.  
  739. SMALLEXPLORER01PressIt.Name = "SMALL EXPLORER 0.1 [Press It]"
  740. SMALLEXPLORER01PressIt.Parent = main
  741. SMALLEXPLORER01PressIt.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  742. SMALLEXPLORER01PressIt.Position = UDim2.new(0, 0, 0.332046747, 0)
  743. SMALLEXPLORER01PressIt.Size = UDim2.new(0, 326, 0, 51)
  744. SMALLEXPLORER01PressIt.Font = Enum.Font.SourceSans
  745. SMALLEXPLORER01PressIt.Text = "SMALL EXPLORER 1.3 [Press It]"
  746. SMALLEXPLORER01PressIt.TextColor3 = Color3.fromRGB(0, 255, 0)
  747. SMALLEXPLORER01PressIt.TextSize = 20.000
  748. SMALLEXPLORER01PressIt.MouseButton1Down:connect(function()
  749. TextProperties = {"ClassName", "Name", "Value", "Text", "Reflectance", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "AccountAge", "RobloxLocked", "TeamColor", "userId", "Brightness", "Ambient", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource"}
  750. BoolProperties = {"Anchored", "CanCollide", "Disabled", "Jump", "Sit", "Visible", "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows"}
  751. BrickColorProperties = {"BrickColor", "Color", "TeamColor", "Texture", "Value"}
  752. s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  753. pgr = Instance.new("TextButton")
  754. pgr.Parent = s
  755. pgr.Size = UDim2.new(0,100,0,40)
  756. pgr.Position = UDim2.new(0,30,0,440)
  757. pgr.Text="Extra Explorer"
  758. pgr.BackgroundTransparency = 0.3
  759. pgr.TextColor = BrickColor.new("White")
  760. pgr.BackgroundColor = BrickColor.new("Really Black")
  761. pgr.BorderColor = BrickColor.new("Black")
  762. pgr.Font = "ArialBold"
  763. pgr.FontSize = "Size14"
  764. pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
  765. pgr.TextStrokeTransparency = 0.3
  766. pgr.BorderSizePixel = 1
  767. pgr.BorderColor = BrickColor.new("White")
  768.  
  769. if game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer") then
  770. game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer"):Remove()
  771. end
  772.  
  773. local Cloned
  774. local Deleted
  775. local DeleteParent
  776. local Player
  777. local Search
  778. local ScriptSearch
  779. local Gui
  780. local Cloned = nil
  781. local Deleted = nil
  782. local DeleteParent = nil
  783. local Current = 0
  784. local CurrentOption = 0
  785.  
  786. function Clear()
  787. if Gui then
  788. Gui:Remove()
  789. end
  790. Current = 0
  791. CurrentOption = 0
  792. end
  793.  
  794. function AddButton(N, Function, Color, Copy)
  795. if not N then
  796. error("RenderButton - No Name Specified")
  797. end
  798. if not Function then
  799. error("RenderButton - No Function Specified")
  800. end
  801. if not Color then
  802. Color = Color3.new(1, 1, 1)
  803. end
  804. if Copy == nil then
  805. Copy = true
  806. end
  807. P = Instance.new("TextButton")
  808. if Copy then
  809. P.Size = UDim2.new(0, 110, 0, 20)
  810. else
  811. P.Size = UDim2.new(0, 130, 0, 20)
  812. end
  813. P.Text = N.Name
  814. P.Name = N.Name
  815. P.Parent = Gui
  816. P.BackgroundColor3 = Color
  817. P.TextColor3 = Color3.new(0, 0, 0)
  818. P.BackgroundTransparency = 0.5
  819. P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
  820. P.MouseButton1Click:connect(function()
  821. Function(P)
  822. end)
  823. D = Instance.new("TextButton")
  824. D.Size = UDim2.new(0, 20, 0, 20)
  825. D.Text = "X"
  826. D.Name = N.Name
  827. D.Parent = Gui
  828. D.BackgroundColor3 = Color3.new(1, 0, 0)
  829. D.TextColor3 = Color3.new(0, 0, 0)
  830. D.BackgroundTransparency = 0.5
  831. D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
  832. D.MouseButton1Click:connect(function()
  833. Deleted = N
  834. DeleteParent = N.Parent
  835. N.Parent = nil
  836. Clear()
  837. Search(DeleteParent)
  838. end)
  839. if Copy then
  840. C = Instance.new("TextButton")
  841. C.Size = UDim2.new(0, 20, 0, 20)
  842. C.Text = "C"
  843. C.Name = N.Name
  844. C.Parent = Gui
  845. C.BackgroundColor3 = Color3.new(0, 1, 0.5)
  846. C.TextColor3 = Color3.new(0, 0, 0)
  847. C.BackgroundTransparency = 0.5
  848. C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
  849. C.MouseButton1Click:connect(function()
  850. Cloned = N
  851. Clear()
  852. Search(N.Parent)
  853. end)
  854. end
  855. Current = Current + 1
  856. return P
  857. end
  858.  
  859. function AddOption(N, Function, Color, Text)
  860. if not N then
  861. error("RenderButton - No Name Specified")
  862. end
  863. if not Color then
  864. Color = Color3.new(1, 1, 1)
  865. end
  866. if Text == nil then
  867. Text = false
  868. end
  869. if Text then
  870. P = Instance.new("TextBox")
  871. else
  872. P = Instance.new("TextButton")
  873. end
  874. P.Text = N
  875. P.Name = N
  876. P.Parent = Gui
  877. P.BackgroundColor3 = Color
  878. P.TextColor3 = Color3.new(0, 0, 0)
  879. P.BackgroundTransparency = 0.5
  880. P.Size = UDim2.new(0, 150, 0, 20)
  881. P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
  882. if not Text and Function then
  883. P.MouseButton1Click:connect(function() Function(P) end)
  884. end
  885. CurrentOption = CurrentOption + 1
  886. return P
  887. end
  888.  
  889. function AddTextOption(Obj, Prop)
  890. local Ob = Obj
  891. local Pro = Prop
  892. if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
  893. CurrentOption = CurrentOption + 1
  894. local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
  895. CurrentOption = CurrentOption - 2
  896. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
  897. CurrentOption = CurrentOption + 1
  898. end
  899. end
  900.  
  901. function AddBrickColorOption(Obj, Prop)
  902. local Ob = Obj
  903. local Pro = Prop
  904. if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
  905. CurrentOption = CurrentOption + 1
  906. local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
  907. CurrentOption = CurrentOption - 2
  908. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
  909. CurrentOption = CurrentOption + 1
  910. end
  911. end
  912.  
  913. function AddBoolOption(Obj, Prop)
  914. local Ob = Obj
  915. local Pro = Prop
  916. if type(Ob[Pro]) == "boolean" then
  917. local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
  918. O.MouseButton1Click:connect(function()
  919. if Ob[Pro] then
  920. Ob[Pro] = false
  921. O.Text = Pro..": false"
  922. else
  923. Ob[Pro] = true
  924. O.Text = Pro..": true"
  925. end
  926. end)
  927. end
  928. end
  929.  
  930. function TestProperty(Obj, Property)
  931. Success = pcall(function()
  932. if Obj[Property] then
  933. return
  934. end
  935. end)
  936. return Success
  937. end
  938.  
  939. function LoadOptions(Object)
  940. for Num, Prop in pairs(TextProperties) do
  941. if TestProperty(Object, Prop) then
  942. AddTextOption(Object, Prop)
  943. end
  944. end
  945. for Num, Prop in pairs(BoolProperties) do
  946. if TestProperty(Object, Prop) then
  947. AddBoolOption(Object, Prop)
  948. end
  949. end
  950. for Num, Prop in pairs(BrickColorProperties) do
  951. if TestProperty(Object, Prop) then
  952. AddBrickColorOption(Object, Prop)
  953. end
  954. end
  955. end
  956.  
  957. function Search(Object)
  958. Gui = Instance.new("ScreenGui")
  959. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  960. Gui.Name = "Explorer"
  961. if Object ~= game then
  962. AddOption("Back", function()
  963. Clear();
  964. Search(Object.Parent)
  965. end, Color3.new(0.5, 1, 1), false)
  966. end
  967. AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
  968. if Cloned then
  969. AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
  970. end
  971. if Deleted then
  972. AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  973. end
  974. if Object:IsA("Player") then
  975. AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
  976. end
  977. if Object:IsA("LocalScript") then
  978. AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
  979. end
  980. if Object:IsA("Terrain") then
  981. AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
  982. end
  983. LoadOptions(Object)
  984. AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
  985. if not Object:IsA("Workspace") or not Object:IsA("Player") then
  986. for Num, Obj in pairs(Object:GetChildren()) do
  987. --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
  988. if true then
  989. if Obj:IsA("LocalScript") then
  990. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
  991. elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
  992. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
  993. elseif Obj.Parent == game then
  994. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
  995. else
  996. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
  997. end
  998. end
  999. end
  1000. end
  1001. function MoveUp(Place, Amount)
  1002. for i,v in pairs(Place:GetChildren()) do
  1003. if v:IsA("TextLabel") or v:IsA("TextBox") then
  1004. v.Position = v.Position + UDim2.new(0,0,0,-Amount)
  1005. end
  1006. end
  1007. end
  1008. function MoveDown(Place, Amount)
  1009. for i,v in pairs(Place:GetChildren()) do
  1010. if v:IsA("TextLabel") or v:IsA("TextBox") then
  1011. v.Position = v.Position + UDim2.new(0,0,0,Amount)
  1012. end
  1013. end
  1014. end
  1015. i=0
  1016. function ScriptSearch(S)
  1017. Script2 = S
  1018. Script = Script2.Source
  1019. Table = {}
  1020. Enabled = true
  1021. Gui = Instance.new("ScreenGui")
  1022. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  1023. Gui.Name = "Explorer"
  1024. while Enabled do
  1025. Start, End = string.find(Script, '\n')
  1026. print(Start, End)
  1027. if Start and End then
  1028. table.insert(Table, string.sub(Script, 1, End))
  1029. New = string.sub(Script, End+1, string.len(Script))
  1030. Script = New
  1031. else
  1032. Enabled = false
  1033. table.insert(Table, string.sub(Script, 1, End))
  1034. print("Finished")
  1035. end
  1036. end
  1037. P = Instance.new("TextLabel")
  1038. P.Size = UDim2.new(0, 500, 0, 20)
  1039. P.Text = Script2.Name
  1040. P.Name = "Script Line"
  1041. P.Parent = Gui
  1042. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1043. P.TextColor3 = Color3.new(0, 0, 0)
  1044. P.BackgroundTransparency = 0.5
  1045. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  1046. P.TextXAlignment = "Left"
  1047. i=i+1
  1048. New = {}
  1049. for I,Val in pairs(Table) do
  1050. print(Val)
  1051. P = Instance.new("TextBox")
  1052. P.ClearTextOnFocus = false
  1053. P.Size = UDim2.new(0, 500, 0, 20)
  1054. P.Text = Val
  1055. P.Name = "Script Line"
  1056. P.Parent = Gui
  1057. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1058. P.TextColor3 = Color3.new(0, 0, 0)
  1059. P.BackgroundTransparency = 0.5
  1060. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  1061. P.TextXAlignment = "Left"
  1062. table.insert(New, P)
  1063. i=i+1
  1064. end
  1065. i=1
  1066. P = Instance.new("TextButton")
  1067. P.Size = UDim2.new(0, 20, 0, 20)
  1068. P.Text = "^"
  1069. P.Name = "Scroll"
  1070. P.Parent = Gui
  1071. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1072. P.TextColor3 = Color3.new(0, 0, 0)
  1073. P.BackgroundTransparency = 0.5
  1074. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1075. P.MouseButton1Click:connect(function()
  1076. MoveUp(Gui, -20)
  1077. end)
  1078. i=i+1
  1079. P = Instance.new("TextButton")
  1080. P.Size = UDim2.new(0, 20, 0, 20)
  1081. P.Text = "v"
  1082. P.Name = "Scroll"
  1083. P.Parent = Gui
  1084. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1085. P.TextColor3 = Color3.new(0, 0, 0)
  1086. P.BackgroundTransparency = 0.5
  1087. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1088. P.MouseButton1Click:connect(function()
  1089. MoveDown(Gui, -20)
  1090. end)
  1091. i=i+1
  1092. P = Instance.new("TextButton")
  1093. P.Size = UDim2.new(0, 20, 0, 20)
  1094. P.Text = "^^"
  1095. P.Name = "Scroll"
  1096. P.Parent = Gui
  1097. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1098. P.TextColor3 = Color3.new(0, 0, 0)
  1099. P.BackgroundTransparency = 0.5
  1100. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1101. P.MouseButton1Click:connect(function()
  1102. MoveUp(Gui, -200)
  1103. end)
  1104. i=i+1
  1105. P = Instance.new("TextButton")
  1106. P.Size = UDim2.new(0, 20, 0, 20)
  1107. P.Text = "vv"
  1108. P.Name = "Scroll"
  1109. P.Parent = Gui
  1110. P.BackgroundColor3 = Color3.new(1, 1, 1)
  1111. P.TextColor3 = Color3.new(0, 0, 0)
  1112. P.BackgroundTransparency = 0.5
  1113. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1114. P.MouseButton1Click:connect(function()
  1115. MoveDown(Gui, -200)
  1116. end)
  1117. i=i+1
  1118. P = Instance.new("TextButton")
  1119. P.Size = UDim2.new(0, 20, 0, 20)
  1120. P.Text = "S"
  1121. P.Name = "Save"
  1122. P.Parent = Gui
  1123. P.BackgroundColor3 = Color3.new(0, 1, 0)
  1124. P.TextColor3 = Color3.new(0, 0, 0)
  1125. P.BackgroundTransparency = 0.5
  1126. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1127. P.MouseButton1Click:connect(function()
  1128. StringS = ""
  1129. for Num, Obj in pairs(New) do
  1130. StringS = StringS..Obj.Text..'\n'
  1131. end
  1132. S.Source = StringS
  1133. S.Disabled = true
  1134. S.Disabled = false
  1135. end)
  1136. i=i+1
  1137. P = Instance.new("TextButton")
  1138. P.Size = UDim2.new(0, 20, 0, 20)
  1139. P.Text = "x"
  1140. P.Name = "Back"
  1141. P.Parent = Gui
  1142. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  1143. P.TextColor3 = Color3.new(0, 0, 0)
  1144. P.BackgroundTransparency = 0.5
  1145. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  1146. P.MouseButton1Click:connect(function()
  1147. Clear()
  1148. i=0
  1149. Search(S)
  1150. end)
  1151. i=i+1
  1152. end
  1153. end
  1154.  
  1155. pgr.MouseButton1Click:connect(function()
  1156. Clear()
  1157. Search(game)
  1158. end)
  1159. end)
  1160.  
  1161.  
  1162. label_2.Name = "label"
  1163. label_2.Parent = main
  1164. label_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1165. label_2.Position = UDim2.new(0, 0, 0.891207397, 0)
  1166. label_2.Size = UDim2.new(0, 326, 0, 49)
  1167. label_2.Font = Enum.Font.SciFi
  1168. label_2.Text = "Gui By [christophet5700] [DBN BETA ONLY]"
  1169. label_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  1170. label_2.TextSize = 18.000
  1171.  
  1172. label_3.Name = "label"
  1173. label_3.Parent = main
  1174. label_3.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1175. label_3.Position = UDim2.new(0.00306748459, 0, 0.791142464, 0)
  1176. label_3.Size = UDim2.new(0, 325, 0, 45)
  1177. label_3.Font = Enum.Font.SpecialElite
  1178. label_3.Text = "???"
  1179. label_3.TextColor3 = Color3.fromRGB(255, 255, 255)
  1180. label_3.TextSize = 25.000
  1181.  
  1182. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Name = "NO FACE [REMOVE IT ON ANY FORM FIRST AND THEN GO BASE!!!]"
  1183. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Parent = main
  1184. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1185. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Position = UDim2.new(0, 0, 0.443677247, 0)
  1186. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Size = UDim2.new(0, 326, 0, 50)
  1187. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Font = Enum.Font.SourceSans
  1188. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.Text = "NO FACE [REMOVE IT ON ANY FORM FIRST AND THEN GO BASE!!!]"
  1189. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.TextColor3 = Color3.fromRGB(255, 255, 255)
  1190. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.TextSize = 14.000
  1191. NOFACEREMOVEITONANYFORMFIRSTANDTHENGOBASE.MouseButton1Down:connect(function()
  1192. game.Players.LocalPlayer.Character.Head.face:Remove()
  1193. end)
  1194.  
  1195. RemoveStunPressItIFSomeoneGlitchedyou.Name = "Remove Stun [Press It IF Someone Glitched you]"
  1196. RemoveStunPressItIFSomeoneGlitchedyou.Parent = main
  1197. RemoveStunPressItIFSomeoneGlitchedyou.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1198. RemoveStunPressItIFSomeoneGlitchedyou.Position = UDim2.new(0, 0, 0.551958919, 0)
  1199. RemoveStunPressItIFSomeoneGlitchedyou.Size = UDim2.new(0, 327, 0, 56)
  1200. RemoveStunPressItIFSomeoneGlitchedyou.Font = Enum.Font.SourceSans
  1201. RemoveStunPressItIFSomeoneGlitchedyou.Text = "Remove Stun [Press It IF Someone Glitched you]"
  1202. RemoveStunPressItIFSomeoneGlitchedyou.TextColor3 = Color3.fromRGB(255, 255, 255)
  1203. RemoveStunPressItIFSomeoneGlitchedyou.TextSize = 19.000
  1204. RemoveStunPressItIFSomeoneGlitchedyou.MouseButton1Down:connect(function()
  1205. game.Players.LocalPlayer.Character["Stun"]:Remove()
  1206. end)
  1207.  
  1208. RefreshButton.Name = "Refresh Button"
  1209. RefreshButton.Parent = main
  1210. RefreshButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  1211. RefreshButton.Position = UDim2.new(0.00306748459, 0, 0.666496396, 0)
  1212. RefreshButton.Size = UDim2.new(0, 327, 0, 56)
  1213. RefreshButton.Font = Enum.Font.SourceSans
  1214. RefreshButton.Text = "Refresh Button"
  1215. RefreshButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  1216. RefreshButton.TextSize = 19.000
  1217. RefreshButton.MouseButton1Down:Connect(function()
  1218. -- Not owned by me, Credits to the original owner
  1219. -- Press q to reset yourself
  1220. -- Good for games that dont allows you to reset
  1221. -- Xfer was here (T.V.K)
  1222.  
  1223. local Player = game:GetService("Players").LocalPlayer
  1224. local Mouse = Player:GetMouse()
  1225.  
  1226. Mouse.KeyDown:Connect(function(key)
  1227. if key == "-" then
  1228.  
  1229. local plr = game.Players.LocalPlayer --tells the script what plr is
  1230. local humanoid = plr.Character.Humanoid
  1231. local position = plr.Character.HumanoidRootPart.CFrame
  1232. wait(0.1)
  1233. humanoid:Destroy()
  1234. plr:ClearAllChildren() --clears all of the plr instance aka the local player
  1235. wait(5.25)
  1236. plr.Character.HumanoidRootPart.CFrame = position
  1237. end
  1238. end)
  1239. end)
  1240.  
  1241.  
  1242. game.Players.DemonLordGrizzly.Status.Goku.Health.Value = 99999999999
  1243. game.Players.DemonLordGrizzly.Status.Goku.PowerLevel.Value = 9999999999
Add Comment
Please, Sign In to add comment