Advertisement
Guest User

Untitled

a guest
Mar 21st, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.78 KB | None | 0 0
  1. V3rmillion
  2. 1
  3. EscotoxExploitzion
  4. Home
  5.  
  6. Rules
  7.  
  8. Member List
  9.  
  10. Search
  11.  
  12. Upgrade
  13.  
  14. Chatbox
  15.  
  16. Help
  17. V3rmillion › Exploiting › Roblox
  18. [RC7] Explorer - Working - No loadstring
  19.  
  20. Advertise with us
  21.  
  22. [RC7] Explorer - Working - No loadstring
  23.  
  24.  
  25. New Reply
  26. Pages (2): 1 2 Next »
  27.  
  28. Poll: Did this work for you?
  29. yis
  30. no ( I need help )
  31. Vote! [Show Results]
  32.  
  33. Note: This is a public poll, other users will be able to see what you voted for.
  34. #1 Star 02-28-2016, 10:26 PM (This post was last modified: 03-05-2016, 03:45 PM by Dhruv. Edit Reason: hi )
  35. Dhruv
  36. Marketplace God - Coder
  37. *****
  38. VIP Posts: 991
  39. Threads: 55
  40. Joined: Feb 2016
  41. Reputation: 0
  42. A good, working explorer. This was leaked before by me on Dhruv but Dhruv is banned atm so ya. vouch if helpful don't be a l33ch!1
  43.  
  44. = Here you all go =
  45.  
  46.  
  47. [-]Script
  48. TextProperties = {"ClassName", "Name", "Value", "Text", "Reflectance", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "AccountAge", "RobloxLocked", "TeamColor", "userId", "Brightness", "Ambient", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource"}
  49. BoolProperties = {"Anchored", "CanCollide", "Disabled", "Jump", "Sit", "Visible", "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows"}
  50. BrickColorProperties = {"BrickColor", "Color", "TeamColor", "Texture", "Value"}
  51. s = Instance.new("ScreenGui", game.CoreGui)
  52. pgr = Instance.new("TextButton")
  53. pgr.Parent = s
  54. pgr.Size = UDim2.new(0,100,0,40)
  55. pgr.Position = UDim2.new(0,30,0,440)
  56. pgr.Text="Explorer"
  57. pgr.BackgroundTransparency = 0.3
  58. pgr.TextColor = BrickColor.new("White")
  59. pgr.BackgroundColor = BrickColor.new("Really Black")
  60. pgr.BorderColor = BrickColor.new("Black")
  61. pgr.Font = "ArialBold"
  62. pgr.FontSize = "Size14"
  63. pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
  64. pgr.TextStrokeTransparency = 0.3
  65. pgr.BorderSizePixel = 1
  66. pgr.BorderColor = BrickColor.new("White")
  67.  
  68. if game.CoreGui:findFirstChild("Explorer") then
  69. game.CoreGui:findFirstChild("Explorer"):Remove()
  70. end
  71.  
  72. local Cloned
  73. local Deleted
  74. local DeleteParent
  75. local Player
  76. local Search
  77. local ScriptSearch
  78. local Gui
  79. local Cloned = nil
  80. local Deleted = nil
  81. local DeleteParent = nil
  82. local Current = 0
  83. local CurrentOption = 0
  84.  
  85. function Clear()
  86. if Gui then
  87. Gui:Remove()
  88. end
  89. Current = 0
  90. CurrentOption = 0
  91. end
  92.  
  93. function AddButton(N, Function, Color, Copy)
  94. if not N then
  95. error("RenderButton - No Name Specified")
  96. end
  97. if not Function then
  98. error("RenderButton - No Function Specified")
  99. end
  100. if not Color then
  101. Color = Color3.new(1, 1, 1)
  102. end
  103. if Copy == nil then
  104. Copy = true
  105. end
  106. P = Instance.new("TextButton")
  107. if Copy then
  108. P.Size = UDim2.new(0, 110, 0, 20)
  109. else
  110. P.Size = UDim2.new(0, 130, 0, 20)
  111. end
  112. P.Text = N.Name
  113. P.Name = N.Name
  114. P.Parent = Gui
  115. P.BackgroundColor3 = Color
  116. P.TextColor3 = Color3.new(0, 0, 0)
  117. P.BackgroundTransparency = 0.5
  118. P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
  119. P.MouseButton1Click:connect(function()
  120. Function(P)
  121. end)
  122. D = Instance.new("TextButton")
  123. D.Size = UDim2.new(0, 20, 0, 20)
  124. D.Text = "X"
  125. D.Name = N.Name
  126. D.Parent = Gui
  127. D.BackgroundColor3 = Color3.new(1, 0, 0)
  128. D.TextColor3 = Color3.new(0, 0, 0)
  129. D.BackgroundTransparency = 0.5
  130. D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
  131. D.MouseButton1Click:connect(function()
  132. Deleted = N
  133. DeleteParent = N.Parent
  134. N.Parent = nil
  135. Clear()
  136. Search(DeleteParent)
  137. end)
  138. if Copy then
  139. C = Instance.new("TextButton")
  140. C.Size = UDim2.new(0, 20, 0, 20)
  141. C.Text = "C"
  142. C.Name = N.Name
  143. C.Parent = Gui
  144. C.BackgroundColor3 = Color3.new(0, 1, 0.5)
  145. C.TextColor3 = Color3.new(0, 0, 0)
  146. C.BackgroundTransparency = 0.5
  147. C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
  148. C.MouseButton1Click:connect(function()
  149. Cloned = N
  150. Clear()
  151. Search(N.Parent)
  152. end)
  153. end
  154. Current = Current + 1
  155. return P
  156. end
  157.  
  158. function AddOption(N, Function, Color, Text)
  159. if not N then
  160. error("RenderButton - No Name Specified")
  161. end
  162. if not Color then
  163. Color = Color3.new(1, 1, 1)
  164. end
  165. if Text == nil then
  166. Text = false
  167. end
  168. if Text then
  169. P = Instance.new("TextBox")
  170. else
  171. P = Instance.new("TextButton")
  172. end
  173. P.Text = N
  174. P.Name = N
  175. P.Parent = Gui
  176. P.BackgroundColor3 = Color
  177. P.TextColor3 = Color3.new(0, 0, 0)
  178. P.BackgroundTransparency = 0.5
  179. P.Size = UDim2.new(0, 150, 0, 20)
  180. P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
  181. if not Text and Function then
  182. P.MouseButton1Click:connect(function() Function(P) end)
  183. end
  184. CurrentOption = CurrentOption + 1
  185. return P
  186. end
  187.  
  188. function AddTextOption(Obj, Prop)
  189. local Ob = Obj
  190. local Pro = Prop
  191. if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
  192. CurrentOption = CurrentOption + 1
  193. local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
  194. CurrentOption = CurrentOption - 2
  195. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
  196. CurrentOption = CurrentOption + 1
  197. end
  198. end
  199.  
  200. function AddBrickColorOption(Obj, Prop)
  201. local Ob = Obj
  202. local Pro = Prop
  203. if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
  204. CurrentOption = CurrentOption + 1
  205. local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
  206. CurrentOption = CurrentOption - 2
  207. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
  208. CurrentOption = CurrentOption + 1
  209. end
  210. end
  211.  
  212. function AddBoolOption(Obj, Prop)
  213. local Ob = Obj
  214. local Pro = Prop
  215. if type(Ob[Pro]) == "boolean" then
  216. local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
  217. O.MouseButton1Click:connect(function()
  218. if Ob[Pro] then
  219. Ob[Pro] = false
  220. O.Text = Pro..": false"
  221. else
  222. Ob[Pro] = true
  223. O.Text = Pro..": true"
  224. end
  225. end)
  226. end
  227. end
  228.  
  229. function TestProperty(Obj, Property)
  230. Success = pcall(function()
  231. if Obj[Property] then
  232. return
  233. end
  234. end)
  235. return Success
  236. end
  237.  
  238. function LoadOptions(Object)
  239. for Num, Prop in pairs(TextProperties) do
  240. if TestProperty(Object, Prop) then
  241. AddTextOption(Object, Prop)
  242. end
  243. end
  244. for Num, Prop in pairs(BoolProperties) do
  245. if TestProperty(Object, Prop) then
  246. AddBoolOption(Object, Prop)
  247. end
  248. end
  249. for Num, Prop in pairs(BrickColorProperties) do
  250. if TestProperty(Object, Prop) then
  251. AddBrickColorOption(Object, Prop)
  252. end
  253. end
  254. end
  255.  
  256. function Search(Object)
  257. Gui = Instance.new("ScreenGui")
  258. Gui.Parent = game.CoreGui
  259. Gui.Name = "Explorer"
  260. if Object ~= game then
  261. AddOption("Back", function()
  262. Clear();
  263. Search(Object.Parent)
  264. end, Color3.new(0.5, 1, 1), false)
  265. end
  266. AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
  267. if Cloned then
  268. AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
  269. end
  270. if Deleted then
  271. AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  272. end
  273. if Object:IsA("Player") then
  274. AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
  275. end
  276. if Object:IsA("LocalScript") then
  277. AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
  278. end
  279. if Object:IsA("Terrain") then
  280. AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
  281. end
  282. LoadOptions(Object)
  283. AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
  284. if not Object:IsA("Workspace") or not Object:IsA("Player") then
  285. for Num, Obj in pairs(Object:GetChildren()) do
  286. --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
  287. if true then
  288. if Obj:IsA("LocalScript") then
  289. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
  290. elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
  291. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
  292. elseif Obj.Parent == game then
  293. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
  294. else
  295. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
  296. end
  297. end
  298. end
  299. end
  300. function MoveUp(Place, Amount)
  301. for i,v in pairs(Place:GetChildren()) do
  302. if v:IsA("TextLabel") or v:IsA("TextBox") then
  303. v.Position = v.Position + UDim2.new(0,0,0,-Amount)
  304. end
  305. end
  306. end
  307. function MoveDown(Place, Amount)
  308. for i,v in pairs(Place:GetChildren()) do
  309. if v:IsA("TextLabel") or v:IsA("TextBox") then
  310. v.Position = v.Position + UDim2.new(0,0,0,Amount)
  311. end
  312. end
  313. end
  314. i=0
  315. function ScriptSearch(S)
  316. Script2 = S
  317. Script = Script2.Source
  318. Table = {}
  319. Enabled = true
  320. Gui = Instance.new("ScreenGui")
  321. Gui.Parent = game.CoreGui
  322. Gui.Name = "Explorer"
  323. while Enabled do
  324. Start, End = string.find(Script, '\n')
  325. print(Start, End)
  326. if Start and End then
  327. table.insert(Table, string.sub(Script, 1, End))
  328. New = string.sub(Script, End+1, string.len(Script))
  329. Script = New
  330. else
  331. Enabled = false
  332. table.insert(Table, string.sub(Script, 1, End))
  333. print("Finished")
  334. end
  335. end
  336. P = Instance.new("TextLabel")
  337. P.Size = UDim2.new(0, 500, 0, 20)
  338. P.Text = Script2.Name
  339. P.Name = "Script Line"
  340. P.Parent = Gui
  341. P.BackgroundColor3 = Color3.new(1, 1, 1)
  342. P.TextColor3 = Color3.new(0, 0, 0)
  343. P.BackgroundTransparency = 0.5
  344. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  345. P.TextXAlignment = "Left"
  346. i=i+1
  347. New = {}
  348. for I,Val in pairs(Table) do
  349. print(Val)
  350. P = Instance.new("TextBox")
  351. P.ClearTextOnFocus = false
  352. P.Size = UDim2.new(0, 500, 0, 20)
  353. P.Text = Val
  354. P.Name = "Script Line"
  355. P.Parent = Gui
  356. P.BackgroundColor3 = Color3.new(1, 1, 1)
  357. P.TextColor3 = Color3.new(0, 0, 0)
  358. P.BackgroundTransparency = 0.5
  359. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  360. P.TextXAlignment = "Left"
  361. table.insert(New, P)
  362. i=i+1
  363. end
  364. i=1
  365. P = Instance.new("TextButton")
  366. P.Size = UDim2.new(0, 20, 0, 20)
  367. P.Text = "^"
  368. P.Name = "Scroll"
  369. P.Parent = Gui
  370. P.BackgroundColor3 = Color3.new(1, 1, 1)
  371. P.TextColor3 = Color3.new(0, 0, 0)
  372. P.BackgroundTransparency = 0.5
  373. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  374. P.MouseButton1Click:connect(function()
  375. MoveUp(Gui, -20)
  376. end)
  377. i=i+1
  378. P = Instance.new("TextButton")
  379. P.Size = UDim2.new(0, 20, 0, 20)
  380. P.Text = "v"
  381. P.Name = "Scroll"
  382. P.Parent = Gui
  383. P.BackgroundColor3 = Color3.new(1, 1, 1)
  384. P.TextColor3 = Color3.new(0, 0, 0)
  385. P.BackgroundTransparency = 0.5
  386. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  387. P.MouseButton1Click:connect(function()
  388. MoveDown(Gui, -20)
  389. end)
  390. i=i+1
  391. P = Instance.new("TextButton")
  392. P.Size = UDim2.new(0, 20, 0, 20)
  393. P.Text = "^^"
  394. P.Name = "Scroll"
  395. P.Parent = Gui
  396. P.BackgroundColor3 = Color3.new(1, 1, 1)
  397. P.TextColor3 = Color3.new(0, 0, 0)
  398. P.BackgroundTransparency = 0.5
  399. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  400. P.MouseButton1Click:connect(function()
  401. MoveUp(Gui, -200)
  402. end)
  403. i=i+1
  404. P = Instance.new("TextButton")
  405. P.Size = UDim2.new(0, 20, 0, 20)
  406. P.Text = "vv"
  407. P.Name = "Scroll"
  408. P.Parent = Gui
  409. P.BackgroundColor3 = Color3.new(1, 1, 1)
  410. P.TextColor3 = Color3.new(0, 0, 0)
  411. P.BackgroundTransparency = 0.5
  412. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  413. P.MouseButton1Click:connect(function()
  414. MoveDown(Gui, -200)
  415. end)
  416. i=i+1
  417. P = Instance.new("TextButton")
  418. P.Size = UDim2.new(0, 20, 0, 20)
  419. P.Text = "S"
  420. P.Name = "Save"
  421. P.Parent = Gui
  422. P.BackgroundColor3 = Color3.new(0, 1, 0)
  423. P.TextColor3 = Color3.new(0, 0, 0)
  424. P.BackgroundTransparency = 0.5
  425. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  426. P.MouseButton1Click:connect(function()
  427. StringS = ""
  428. for Num, Obj in pairs(New) do
  429. StringS = StringS..Obj.Text..'\n'
  430. end
  431. S.Source = StringS
  432. S.Disabled = true
  433. S.Disabled = false
  434. end)
  435. i=i+1
  436. P = Instance.new("TextButton")
  437. P.Size = UDim2.new(0, 20, 0, 20)
  438. P.Text = "x"
  439. P.Name = "Back"
  440. P.Parent = Gui
  441. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  442. P.TextColor3 = Color3.new(0, 0, 0)
  443. P.BackgroundTransparency = 0.5
  444. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  445. P.MouseButton1Click:connect(function()
  446. Clear()
  447. i=0
  448. Search(S)
  449. end)
  450. i=i+1
  451. end
  452. end
  453.  
  454. pgr.MouseButton1Click:connect(function()
  455. Clear()
  456. Search(game)
  457. end)
  458. [Image: jvqLCAV.gif]
  459.  
  460. [Image: eiV8PjG.gif]
  461. Email PM Find Reply Quote Report
  462. #2 02-28-2016, 10:29 PM
  463. goodnoobbrother
  464. Starting Out
  465. *
  466. Posts: 10
  467. Threads: 3
  468. Joined: Feb 2016
  469. Reputation: 0
  470. Where is the rc7??? I WANT IT
  471. Smile Angry Angel
  472. Email PM Find Reply Quote Report
  473. #3 02-28-2016, 10:30 PM
  474. CitizenErased
  475. Senior Member
  476. ****
  477. Posts: 279
  478. Threads: 0
  479. Joined: Feb 2016
  480. Reputation: 0
  481. (02-28-2016, 10:29 PM)goodnoobbrother Wrote:
  482. Where is the rc7??? I WANT IT
  483. Smile Angry Angel
  484.  
  485. Buy it when it's on sale Wink
  486. And this chaos, it defies imagination
  487. Email PM Find Reply Quote Report
  488. #4 02-28-2016, 10:40 PM
  489. Dhruv
  490. Marketplace God - Coder
  491. *****
  492. VIP Posts: 991
  493. Threads: 55
  494. Joined: Feb 2016
  495. Reputation: 0
  496. probably on sale tomorrow so um ya
  497. Email PM Find Reply Quote Report
  498. #5 03-05-2016, 03:45 PM
  499. Dhruv
  500. Marketplace God - Coder
  501. *****
  502. VIP Posts: 991
  503. Threads: 55
  504. Joined: Feb 2016
  505. Reputation: 0
  506. so hi ok
  507. this actually werks
  508. no loadsgtring
  509. and good
  510. Email PM Find Reply Quote Report
  511. #6 03-05-2016, 04:20 PM
  512. Cartman
  513. Known Member
  514. ***
  515. Posts: 168
  516. Threads: 3
  517. Joined: Feb 2016
  518. Reputation: 0
  519. (02-28-2016, 10:29 PM)goodnoobbrother Wrote:
  520. Where is the rc7??? I WANT IT
  521. Smile Angry Angel
  522.  
  523. Rc7 is not on sale.
  524. [Image: KQUJY8x.gif]
  525.  
  526. Skype is paulydxdd
  527.  
  528. [Image: KQUJY8x.gif]
  529. Email PM Find Reply Quote Report
  530. #7 03-05-2016, 04:27 PM
  531. FuryNot12
  532. Senior Member
  533. ****
  534. Posts: 275
  535. Threads: 11
  536. Joined: Feb 2016
  537. Reputation: 0
  538. (02-28-2016, 10:29 PM)goodnoobbrother Wrote:
  539. Where is the rc7??? I WANT IT
  540. Smile Angry Angel
  541.  
  542. I think he want it for free.
  543. Just because i got a little post does not make me a potential contributor
  544.  
  545.  
  546. Old account
  547.  
  548. Post- 150
  549. join- 4/16/2015
  550. Email PM Find Reply Quote Report
  551. #8 03-05-2016, 08:10 PM
  552. dab
  553. Known Member
  554. ***
  555. Posts: 104
  556. Threads: 17
  557. Joined: Feb 2016
  558. Reputation: 0
  559. vouch
  560. why would people ask for the download lol
  561. Email PM Find Reply Quote Report
  562. #9 Yesterday, 06:52 PM
  563. Dhruv
  564. Marketplace God - Coder
  565. *****
  566. VIP Posts: 991
  567. Threads: 55
  568. Joined: Feb 2016
  569. Reputation: 0
  570. (03-05-2016, 08:10 PM)dab Wrote:
  571. vouch
  572. why would people ask for the download lol
  573.  
  574. idk lol.
  575. ppl r stupid
  576. [Image: jvqLCAV.gif]
  577.  
  578. [Image: eiV8PjG.gif]
  579. Email PM Find Reply Quote Report
  580. #10 Yesterday, 06:57 PM
  581. EscotoxExploitzion
  582. Junior Member
  583. **
  584. Posts: 48
  585. Threads: 9
  586. Joined: Feb 2016
  587. Reputation: 0
  588. Warning Level: 0%
  589. Vouch Works perfectly fine
  590. [Image: 2VL4UcF.gif]
  591. [Image: QCfMTYm.gif]
  592. Email PM Find Edit Reply Quote Report
  593.  
  594. Enter Keywords
  595. Search Thread
  596. « Next Oldest | Next Newest »
  597. Pages (2): 1 2 Next »
  598. New Reply
  599.  
  600. [-]
  601. Quick Reply
  602. Message
  603. Type your reply to this message here.
  604.  
  605. Signature
  606. Disable Smilies
  607.  
  608. Post Reply Preview Post
  609.  
  610.  
  611. Users browsing this thread: EscotoxExploitzion
  612. Navigation
  613.  
  614. Request Content Removal
  615. Contact Us
  616. Legal Documents
  617.  
  618. Links
  619.  
  620. Privacy Policy
  621. Rules
  622. Upgrade
  623.  
  624. About Us
  625.  
  626. Vermillion is a Programming and Gaming community forum dedicated to the conversation of a range of topics, within and out of the programming world. Join us today! If you have any questions, feel free to make a thread in our User Support Section or contact us by email.
  627.  
  628. If any content on this site is illegal, infringes on your copyright, or contains personal information, you can request to have it removed with this form. If content is in violation of our rules, please use the report button or contact a staff member.
  629. Powered by electricity MyBB © 2016
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement