Guest User

Untitled

a guest
Sep 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.99 KB | None | 0 0
  1. TextProperties = {"ZOffset", "CharacterAppearance", "PrimaryPart", "SkyboxBk", "SkyboxDn", "WaterTransparency", "WaterWaveSpeed", "HipHeight","ChatHistory","ConversationDistance", "BlastPressure", "BlastRadius", "InitialPrompt", "CPU", "OSVer", "OsPlatformId", "CpuSpeed", "D", "P", "maxForce", "InstanceCount", "PlaceId", "workspace", "GarbageCollectionFrequency", "BinType", "Grip", "ActivationState", "GarbageCollectionLimit", "ShadowColor", "TargetPoint", "WalkDirection", "WalkToPart", "Image", "Font", "ClearTextOnFocus", "TextTransparency", "WalkToPoint", "ColorShift_Bottom", "ColorShift_Top","MaxSpeed","CartoonFactor","Target","MaxThrust","MaxTorque","TargetOffset","ThrustD", "ThrustP", "TurnD", "TurnP", "profileName", "Resolution", "Shadow", "Bevels", "BatchSize", "AASamples", "Genre", "CreatorType", "CreatorId", "JobId", "SkyboxUp", "SkyboxFt", "SkyboxLf", "StarCount", "ReporterType", "Outfit1", "Outfit2", "Pants", "PlayCount", "Shirt", "MinReportInterval", "VelocitySpread","Rate", "DataSendRate", "DataGCRate", "Archivable", "ClassName","NameDisplayerDistance", "MaxVelocity","PantsTemplate","ShirtTemplate","SoundId","Pitch","IsPlaying","IsPaused","Looped","PlayOnRemove","StudsPerTileU","StudsPerTileV", "Name", "Value", "MaxPlayers" , "PersonalServerRank" ,"NumPlayers" , "Text", "Reflectance","FogEnd", "FogStart","WaterTransparency", "Transparency", "Heat", "TeamName", "WalkSpeed", "Health", "MaxHealth", "Size", "Position", "TeamColor", "userId", "Brightness", "Ambient", "OsPlatform", "ChatMode", "AccountAgeReplicate", "Character", "Steer", "Style","NetworkOwnerV3", "CanCollide", "CFrame", "TimeOfDay", "FieldOfView", "CameraType", "LinkedSource", "MachineAddress", "Port"}
  2.  
  3. BoolProperties = {"Anchored", "AllowInsertFreeModels","SuperSafeChatReplicate", "Player", "HangDetection", "FullScriptCode", "DataModelJobs", "DeviceLost", "SSAO", "SoundEnabled", "SoftwareSound", "TextFits", "TextWrap", "Draggable", "BubbleChat" , "AutoRuns", "Guest", "LocalSaveEnabled", "PlatformStand", "AutoRotate", "CelestialBodiesShown","HasBuildTools" , "ClassicChat" , "DevEnableMouseLock" ,"Netural", "CanCollide", "Disabled", "Outlines" ,"Jump", "Sit", "Visible", "IsSmooth" , "Enabled", "Locked", "FilteringEnabled", "StreamingEnabled", "GlobalShadows", "RobloxLocked", "ScriptsDisabled"}
  4. BrickColorProperties = {"BrickColor", "Color","AllowSweep", "WaterColor", "ParallelPhysics", "Is30FpsThrottleEnabled", "HeadsUpDisplay", "Texture", "Value", "WaterColor", "SkinColor", "SparkleColor", "FogColor", "HeadColor", "LeftArmColor", "RightArmColor", "TorsoColor", "RightLegColor", "LeftLegColor","ShadowColor", "Ambient", "SecondaryColor"}
  5. s = Instance.new("ScreenGui", game.Players.LocalPlayer.PlayerGui)
  6. pgr = Instance.new("TextButton")
  7. pgr.Parent = s
  8. pgr.Size = UDim2.new(0,100,0,40)
  9. pgr.Position = UDim2.new(0,30,0,440)
  10. pgr.Text="Xplorer"
  11. pgr.BackgroundTransparency = 0.7
  12. pgr.TextColor = BrickColor.new("Black")
  13. pgr.BackgroundColor = BrickColor.new("Really Black")
  14. pgr.BorderColor = BrickColor.new("Black")
  15. pgr.Font = "ArialBold"
  16. pgr.FontSize = "Size14"
  17. pgr.TextStrokeColor3 = Color3.new(0/0,0/0,0/0)
  18. pgr.TextStrokeTransparency = 0.3
  19. pgr.BorderSizePixel = 1
  20. pgr.BorderColor = BrickColor.new("White")
  21.  
  22. if game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer") then
  23. game.Players.LocalPlayer.PlayerGui:findFirstChild("Explorer"):Remove()
  24. end
  25.  
  26.  
  27.  
  28. local Cloned
  29. local Deleted
  30. local DeleteParent
  31. local Player
  32. local Search
  33. local ScriptSearch
  34. local Gui
  35. local Cloned = nil
  36. local Deleted = nil
  37. local DeleteParent = nil
  38. local Current = 0
  39. local CurrentOption = 0
  40.  
  41. function Clear()
  42. if Gui then
  43. Gui:Remove()
  44. end
  45. Current = 0
  46. CurrentOption = 0
  47. end
  48.  
  49. function AddButton(N, Function, Color, Copy)
  50. if not N then
  51. error("RenderButton - No Name Specified")
  52. end
  53. if not Function then
  54. error("RenderButton - No Function Specified")
  55. end
  56. if not Color then
  57. Color = Color3.new(1, 1, 1)
  58. end
  59. if Copy == nil then
  60. Copy = true
  61. end
  62. P = Instance.new("TextButton")
  63. if Copy then
  64. P.Size = UDim2.new(0, 110, 0, 20)
  65. else
  66. P.Size = UDim2.new(0, 130, 0, 20)
  67. end
  68. P.Text = N.Name
  69. P.Name = N.Name
  70. P.Parent = Gui
  71. P.BackgroundColor3 = Color
  72. P.TextColor3 = Color3.new(0, 0, 0)
  73. P.BackgroundTransparency = 0.5
  74. P.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300, 0, 50+(20*((Current%30)-1)))
  75. P.MouseButton1Click:connect(function()
  76. Function(P)
  77. end)
  78. D = Instance.new("TextButton")
  79. D.Size = UDim2.new(0, 20, 0, 20)
  80. D.Text = "X"
  81. D.Name = N.Name
  82. D.Parent = Gui
  83. D.BackgroundColor3 = Color3.new(1, 0, 0)
  84. D.TextColor3 = Color3.new(0, 0, 0)
  85. D.BackgroundTransparency = 0.5
  86. D.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+130, 0, 50+(20*((Current%30)-1)))
  87. D.MouseButton1Click:connect(function()
  88. Deleted = N
  89. DeleteParent = N.Parent
  90. N.Parent = nil
  91. Clear()
  92. Search(DeleteParent)
  93. end)
  94. if Copy then
  95. C = Instance.new("TextButton")
  96. C.Size = UDim2.new(0, 20, 0, 20)
  97. C.Text = "C"
  98. C.Name = N.Name
  99. C.Parent = Gui
  100. C.BackgroundColor3 = Color3.new(0, 1, 0.5)
  101. C.TextColor3 = Color3.new(0, 0, 0)
  102. C.BackgroundTransparency = 0.5
  103. C.Position = UDim2.new(0, ((math.modf(Current/30))*150)+300+110, 0, 50+(20*((Current%30)-1)))
  104. C.MouseButton1Click:connect(function()
  105. Cloned = N
  106. Clear()
  107. Search(N.Parent)
  108. end)
  109. end
  110. Current = Current + 1
  111. return P
  112. end
  113.  
  114. function AddOption(N, Function, Color, Text)
  115. if not N then
  116. error("RenderButton - No Name Specified")
  117. end
  118. if not Color then
  119. Color = Color3.new(1, 1, 1)
  120. end
  121. if Text == nil then
  122. Text = false
  123. end
  124. if Text then
  125. P = Instance.new("TextBox")
  126. else
  127. P = Instance.new("TextButton")
  128. end
  129. P.Text = N
  130. P.Name = N
  131. P.Parent = Gui
  132. P.BackgroundColor3 = Color
  133. P.TextColor3 = Color3.new(0, 0, 0)
  134. P.BackgroundTransparency = 0.5
  135. P.Size = UDim2.new(0, 150, 0, 20)
  136. P.Position = UDim2.new(0, ((math.modf(CurrentOption/30))*150)+150, 0, 50+(20*((CurrentOption%30)-1)))
  137. if not Text and Function then
  138. P.MouseButton1Click:connect(function() Function(P) end)
  139. end
  140. CurrentOption = CurrentOption + 1
  141. return P
  142. end
  143.  
  144. function AddTextOption(Obj, Prop)
  145. local Ob = Obj
  146. local Pro = Prop
  147. if type(Ob[Pro]) == "number" or type(Ob[Pro]) == "string" then
  148. CurrentOption = CurrentOption + 1
  149. local T = AddOption(Ob[Pro], nil, Color3.new(0.1, 0.4, 0.1), true)
  150. CurrentOption = CurrentOption - 2
  151. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = T.Text end, Color3.new(0.1, 0.8, 0.1), false)
  152. CurrentOption = CurrentOption + 1
  153. end
  154. end
  155.  
  156. function AddBrickColorOption(Obj, Prop)
  157. local Ob = Obj
  158. local Pro = Prop
  159. if BrickColor.new(tostring(Ob[Pro])) == Ob[Pro] then
  160. CurrentOption = CurrentOption + 1
  161. local T = AddOption(tostring(Ob[Pro]), nil, Color3.new(0.1, 0.4, 0.1), true)
  162. CurrentOption = CurrentOption - 2
  163. local O = AddOption("Change "..Pro..":", function() Ob[Pro] = BrickColor.new(T.Text) end, Color3.new(0.1, 0.8, 0.1), false)
  164. CurrentOption = CurrentOption + 1
  165. end
  166. end
  167.  
  168. function UnanchorObject(Objects)
  169. local function Recurse(Base)
  170. for _, Object in pairs(Base:GetChildren()) do
  171. if _G.TestProperty(Object, "Anchored") then
  172. Object.Anchored = not Object.Anchored
  173. end
  174. Recurse(Object)
  175. end
  176. end
  177. Recurse(Objects)
  178. end
  179.  
  180.  
  181.  
  182.  
  183. function AddBoolOption(Obj, Prop)
  184. local Ob = Obj
  185. local Pro = Prop
  186. if type(Ob[Pro]) == "boolean" then
  187. local O = AddOption(Pro..": "..tostring(Ob[Pro]), nil, Color3.new(0.1, 0.8, 0.1), false)
  188. O.MouseButton1Click:connect(function()
  189. if Ob[Pro] then
  190. Ob[Pro] = false
  191. O.Text = Pro..": false"
  192. else
  193. Ob[Pro] = true
  194. O.Text = Pro..": true"
  195. end
  196. end)
  197. end
  198. end
  199.  
  200. function TestProperty(Obj, Property)
  201. Success = pcall(function()
  202. if Obj[Property] then
  203. return
  204. end
  205. end)
  206. return Success
  207. end
  208.  
  209. function LoadOptions(Object)
  210. for Num, Prop in pairs(TextProperties) do
  211. if TestProperty(Object, Prop) then
  212. AddTextOption(Object, Prop)
  213. end
  214. end
  215. for Num, Prop in pairs(BoolProperties) do
  216. if TestProperty(Object, Prop) then
  217. AddBoolOption(Object, Prop)
  218. end
  219. end
  220. for Num, Prop in pairs(BrickColorProperties) do
  221. if TestProperty(Object, Prop) then
  222. AddBrickColorOption(Object, Prop)
  223. end
  224. end
  225. end
  226.  
  227.  
  228. function AddForceField(Player)
  229. Instance.new("ForceField", Player.Character)
  230. end
  231. function Killp(Player)
  232. Player.Character.Humanoid.Health=0
  233. end
  234. function AddExplode(Player)
  235. Instance.new("Explosion", Player.Character)
  236. end
  237. function AddSparkles(Player)
  238. Instance.new("Sparkles", Player.Character)
  239. end
  240.  
  241.  
  242. function FreezeParts(b)
  243. if (b.className == "Part") then
  244. b.Anchored=true;
  245. end
  246. end
  247.  
  248.  
  249.  
  250.  
  251. function Search(Object)
  252. Gui = Instance.new("ScreenGui")
  253. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  254. Gui.Name = "Explorer"
  255. if Object ~= game then
  256. AddOption("Back", function()
  257. Clear();
  258. Search(Object.Parent)
  259. end, Color3.new(0.5, 1, 1), false)
  260. end
  261. if Object:IsA("Sound") then
  262. AddOption("Copy ID", function() CopyString(tostring(Object.SoundId):sub(14)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  263. AddOption("Play", function() Object:Play(); Clear(); Search(Object); end, Color3.new(0, 0, 1), false)
  264. AddOption("Stop", function() Object:Stop(); Clear(); Search(Object); end, Color3.new(1, 1, 0), false)
  265. end
  266. if Object:IsA("BoolValue") then
  267. AddBoolOption(Object,"Value")
  268. end
  269. if Object:IsA("Workspace") then
  270. AddOption("BlackHole", function() local p= game.Players:GetChildren() for i= 1, #p do if p[i] ~= "LocalPlayer" then b = Instance.new("BodyPosition") b.Parent = p[i].Character.Torso b.maxForce = Vector3.new(6000000,60000000,60000000) b.position = Vector3.new(100,10,0)end end end, Color3.new(1, 0.6, 0.1), false)
  271. end
  272. if Object:IsA("IntValue") or Object:IsA("StringValue") or Object:IsA("NumberValue") then
  273. AddOption("Copy Value", function() CopyString(tostring(Object.Value)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  274. end
  275. if Object:IsA("TextLabel") or Object:IsA("TextBox") or Object:IsA("Message") then
  276. AddOption("Copy Value", function() CopyString(tostring(Object.Text)); warn("Copied."); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  277. end
  278. if Object ~= game then
  279. AddOption("Unanchor Children", function() UnanchorObject(Object); Clear(); Search(Object); end, Color3.new(1, 0.2, 0), false)
  280. AddOption("ClearAllChildren", function() Object:ClearAllChildren(); Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  281. end
  282. if Object:IsA("Model") then
  283. AddOption("SaveInstance", function() SaveInstance(Object) end, Color3.new(1, 1, 1), false)
  284. end
  285. AddOption("Reload", function() Clear(); Search(Object); end, Color3.new(0.2, 1, 0.2), false)
  286. if Cloned then
  287. AddOption("Paste", function() Cloned:Clone().Parent = Object; Clear(); Search(Object); end, Color3.new(0.5, 1, 1), false)
  288. end
  289. if Deleted then
  290. AddOption("Undo", function() Deleted.Parent = DeleteParent; Deleted = nil; DeletedParent = nil; Clear(); Search(Object); end, Color3.new(1, 0.6, 0.1), false)
  291. end
  292. if Object:IsA("Player") then
  293. AddOption("SwitchCamera", function() Clear(); if Object.CameraMode == "Classic" then Object.CameraMode = "LockFirstPerson" Search(Object) else Object.CameraMode = "Classic" Search(Object); end end, Color3.new(1, 0.6, 0.1), false)
  294. AddOption("Goto Character", function() Clear(); if Object.Character then Search(Object.Character); end end, Color3.new(1, 1, 1), false)
  295. AddOption("Kill", function() Killp(Object) end, Color3.new(1,0.6,0.1), false)
  296. AddOption("Freeze", function() FreezeParts(Object.Character.Torso); end, Color3.new(1, 0.6, 0.1), false)
  297. AddOption("Unequip Tools", function() Object.Character.Humanoid:UnequipTools() end, Color3.new(1, 0.6, 0.1), false)
  298. --AddOption("Explode", function() AddExplode(Object); end, Color3.new(1, 0.6, 0.1), false)
  299. end
  300.  
  301.  
  302.  
  303. if Object:IsA("Lighting") then
  304. AddOption("Night", function() Object.TimeOfDay="24:24:24" end, Color3.new(1.,0.6,0.1), false)
  305. AddOption("Day", function() Object.TimeOfDay="12:12:12" end, Color3.new(1.,0.6,0.1), false)
  306. end
  307. if Object:IsA("LocalScript") or Object:IsA("ModuleScript") then
  308. AddOption("EditScript", function() Clear(); ScriptSearch(Object); end, Color3.new(1, 1, 1), false)
  309. end
  310. if Object:IsA("Terrain") then
  311. AddOption("Clear", function() Object:Clear(); end, Color3.new(1, 1, 1), false)
  312. end
  313.  
  314. LoadOptions(Object)
  315. AddOption("Close", Clear, Color3.new(1, 0.2, 0), false)
  316. if not Object:IsA("Workspace") or not Object:IsA("Player") then
  317. for Num, Obj in pairs(Object:GetChildren()) do
  318. --if not Obj:IsA("BasePart") or not Object.Parent == game.Workspace then
  319. if true then
  320. if Obj:IsA("LocalScript") then
  321. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 0, 0), true)
  322. elseif Obj:IsA("Script") or Obj:IsA("StarterScript") or Obj:IsA("CoreScript") then
  323. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(0.5, 0.5, 0.8), true)
  324. elseif Obj.Parent == game then
  325. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), false)
  326. else
  327. AddButton(Obj, function() Clear(); Search(Obj); end, Color3.new(1, 1, 1), true)
  328. end
  329. end
  330. end
  331. end
  332. function MoveUp(Place, Amount)
  333. for i,v in pairs(Place:GetChildren()) do
  334. if v:IsA("TextLabel") or v:IsA("TextBox") then
  335. v.Position = v.Position + UDim2.new(0,0,0,-Amount)
  336. end
  337. end
  338. end
  339. function MoveDown(Place, Amount)
  340. for i,v in pairs(Place:GetChildren()) do
  341. if v:IsA("TextLabel") or v:IsA("TextBox") then
  342. v.Position = v.Position + UDim2.new(0,0,0,Amount)
  343. end
  344. end
  345. end
  346. i=0
  347. function ScriptSearch(S)
  348. Script2 = S
  349. Script = decompile(Script2)
  350. Table = {}
  351. Enabled = true
  352. Gui = Instance.new("ScreenGui")
  353. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  354. Gui.Name = "Explorer"
  355. while Enabled do
  356. Start, End = string.find(Script, '\n')
  357. print(Start, End)
  358. if Start and End then
  359. table.insert(Table, string.sub(Script, 1, End))
  360. New = string.sub(Script, End+1, string.len(Script))
  361. Script = New
  362. else
  363. Enabled = false
  364. table.insert(Table, string.sub(Script, 1, End))
  365. print("Finished")
  366. end
  367. end
  368. P = Instance.new("TextLabel")
  369. P.Size = UDim2.new(0, 500, 0, 20)
  370. P.Text = Script2.Name
  371. P.Name = "Script Line"
  372. P.Parent = Gui
  373. P.BackgroundColor3 = Color3.new(1, 1, 1)
  374. P.TextColor3 = Color3.new(0, 0, 0)
  375. P.BackgroundTransparency = 0.5
  376. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  377. P.TextXAlignment = "Left"
  378. i=i+1
  379. New = {}
  380. for I,Val in pairs(Table) do
  381. print(Val)
  382. P = Instance.new("TextBox")
  383. P.ClearTextOnFocus = false
  384. P.Size = UDim2.new(0, 500, 0, 20)
  385. P.Text = Val
  386. P.Name = "Script Line"
  387. P.Parent = Gui
  388. P.BackgroundColor3 = Color3.new(1, 1, 1)
  389. P.TextColor3 = Color3.new(0, 0, 0)
  390. P.BackgroundTransparency = 0.5
  391. P.Position = UDim2.new(0.5, -250, 0, 150+(20*(i-1)))
  392. P.TextXAlignment = "Left"
  393. table.insert(New, P)
  394. i=i+1
  395. end
  396. i=1
  397. P = Instance.new("TextButton")
  398. P.Size = UDim2.new(0, 20, 0, 20)
  399. P.Text = "^"
  400. P.Name = "Scroll"
  401. P.Parent = Gui
  402. P.BackgroundColor3 = Color3.new(1, 1, 1)
  403. P.TextColor3 = Color3.new(0, 0, 0)
  404. P.BackgroundTransparency = 0.5
  405. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  406. P.MouseButton1Click:connect(function()
  407. MoveUp(Gui, -20)
  408. end)
  409. i=i+1
  410. P = Instance.new("TextButton")
  411. P.Size = UDim2.new(0, 20, 0, 20)
  412. P.Text = "v"
  413. P.Name = "Scroll"
  414. P.Parent = Gui
  415. P.BackgroundColor3 = Color3.new(1, 1, 1)
  416. P.TextColor3 = Color3.new(0, 0, 0)
  417. P.BackgroundTransparency = 0.5
  418. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  419. P.MouseButton1Click:connect(function()
  420. MoveDown(Gui, -20)
  421. end)
  422. i=i+1
  423. P = Instance.new("TextButton")
  424. P.Size = UDim2.new(0, 20, 0, 20)
  425. P.Text = "^^"
  426. P.Name = "Scroll"
  427. P.Parent = Gui
  428. P.BackgroundColor3 = Color3.new(1, 1, 1)
  429. P.TextColor3 = Color3.new(0, 0, 0)
  430. P.BackgroundTransparency = 0.5
  431. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  432. P.MouseButton1Click:connect(function()
  433. MoveUp(Gui, -200)
  434. end)
  435. i=i+1
  436. P = Instance.new("TextButton")
  437. P.Size = UDim2.new(0, 20, 0, 20)
  438. P.Text = "vv"
  439. P.Name = "Scroll"
  440. P.Parent = Gui
  441. P.BackgroundColor3 = Color3.new(1, 1, 1)
  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. MoveDown(Gui, -200)
  447. end)
  448. i=i+1
  449. P = Instance.new("TextButton")
  450. P.Size = UDim2.new(0, 20, 0, 20)
  451. P.Text = "S"
  452. P.Name = "Save"
  453. P.Parent = Gui
  454. P.BackgroundColor3 = Color3.new(0, 1, 0)
  455. P.TextColor3 = Color3.new(0, 0, 0)
  456. P.BackgroundTransparency = 0.5
  457. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  458. P.MouseButton1Click:connect(function()
  459. StringS = ""
  460. for Num, Obj in pairs(New) do
  461. StringS = StringS..Obj.Text..'\n'
  462. end
  463. S.Source = StringS
  464. S.Disabled = true
  465. S.Disabled = false
  466. end)
  467. i=i+1
  468. P = Instance.new("TextButton")
  469. P.Size = UDim2.new(0, 20, 0, 20)
  470. P.Text = "C"
  471. P.Name = "Copy"
  472. P.Parent = Gui
  473. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  474. P.TextColor3 = Color3.new(0, 0, 0)
  475. P.BackgroundTransparency = 0.5
  476. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  477. P.MouseButton1Click:connect(function()
  478. StringS = ""
  479. for Num, Obj in pairs(New) do
  480. StringS = StringS..Obj.Text..'\n'
  481. end
  482. CopyString(StringS)
  483. end)
  484. i=i+1
  485. P = Instance.new("TextButton")
  486. P.Size = UDim2.new(0, 20, 0, 20)
  487. P.Text = "x"
  488. P.Name = "Back"
  489. P.Parent = Gui
  490. P.BackgroundColor3 = Color3.new(1, 0.2, 0)
  491. P.TextColor3 = Color3.new(0, 0, 0)
  492. P.BackgroundTransparency = 0.5
  493. P.Position = UDim2.new(0.5, -270, 0, 150+(20*(i-1)))
  494. P.MouseButton1Click:connect(function()
  495. Clear()
  496. i=0
  497. Search(S)
  498. end)
  499. i=i+1
  500. end
  501. end
  502.  
  503. pgr.MouseButton1Click:connect(function()
  504. Clear()
  505. Search(game)
  506. end)
Add Comment
Please, Sign In to add comment