Advertisement
gggaming

Untitled

Mar 29th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.97 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local Frame_2 = Instance.new("Frame")
  10. local Main = Instance.new("Frame")
  11. local OPEN = Instance.new("TextButton")
  12. local CLOSE = Instance.new("TextButton")
  13. local AUTOFARM = Instance.new("TextButton")
  14. local TextLabel_2 = Instance.new("TextLabel")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. Frame.Position = UDim2.new(0, 0, 0.906374514, 0)
  24. Frame.Size = UDim2.new(0, 259, 0, 47)
  25.  
  26. TextLabel.Parent = Frame
  27. TextLabel.BackgroundColor3 = Color3.fromRGB(55, 55, 55)
  28. TextLabel.Size = UDim2.new(0, 259, 0, 50)
  29. TextLabel.Font = Enum.Font.Cartoon
  30. TextLabel.Text = "EVERY SCRIPT IN THIS GUI IS MINE"
  31. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. TextLabel.TextSize = 14.000
  33.  
  34. Frame_2.Parent = Frame
  35. Frame_2.BackgroundColor3 = Color3.fromRGB(55, 55, 55)
  36. Frame_2.Position = UDim2.new(0, 0, -9.68085098, 0)
  37. Frame_2.Size = UDim2.new(0, 204, 0, 39)
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = Frame_2
  41. Main.BackgroundColor3 = Color3.fromRGB(31, 31, 31)
  42. Main.BorderColor3 = Color3.fromRGB(31, 31, 31)
  43. Main.Position = UDim2.new(0, 0, 1, 0)
  44. Main.Size = UDim2.new(0, 204, 0, 246)
  45.  
  46. OPEN.Name = "OPEN"
  47. OPEN.Parent = Main
  48. OPEN.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  49. OPEN.BackgroundTransparency = 5.000
  50. OPEN.Position = UDim2.new(0.852941155, 0, -0.158536583, 0)
  51. OPEN.Size = UDim2.new(0, 30, 0, 21)
  52. OPEN.Font = Enum.Font.SourceSans
  53. OPEN.Text = "-"
  54. OPEN.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. OPEN.TextScaled = true
  56. OPEN.TextSize = 14.000
  57. OPEN.TextWrapped = true
  58. OPEN.MouseButton1Click:connect(function()
  59. Main.Visible = true
  60. OPEN.Visible = true
  61. CLOSE.Visible = false
  62. end)
  63.  
  64. CLOSE.Name = "CLOSE"
  65. CLOSE.Parent = Main
  66. CLOSE.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  67. CLOSE.BackgroundTransparency = 5.000
  68. CLOSE.Position = UDim2.new(0.852941155, 0, -0.158536583, 0)
  69. CLOSE.Size = UDim2.new(0, 30, 0, 21)
  70. CLOSE.Visible = false
  71. CLOSE.Font = Enum.Font.SourceSans
  72. CLOSE.Text = "-"
  73. CLOSE.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. CLOSE.TextScaled = true
  75. CLOSE.TextSize = 14.000
  76. CLOSE.TextWrapped = true
  77. CLOSE.MouseButton1Click:connect(function()
  78. Main.Visible = false
  79. OPEN.Visible = true
  80. CLOSE.Visible = false
  81. end)
  82.  
  83. AUTOFARM.Name = "AUTOFARM"
  84. AUTOFARM.Parent = Main
  85. AUTOFARM.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  86. AUTOFARM.Size = UDim2.new(0, 204, 0, 50)
  87. AUTOFARM.Font = Enum.Font.SourceSans
  88. AUTOFARM.Text = "Aimbot&ESP"
  89. AUTOFARM.TextColor3 = Color3.fromRGB(255, 255, 255)
  90. AUTOFARM.TextScaled = true
  91. AUTOFARM.TextSize = 14.000
  92. AUTOFARM.TextWrapped = true
  93. AUTOFARM.MouseButton1Click:connect(function()
  94. --[[
  95. AimHot, made by Mr.Thc#6299
  96. Press H to start the aimbot.
  97. Press right ALT to enable ESP.
  98. type /e -help if you need info about the aimbot/esp.
  99. --]]
  100.  
  101. _G.FRIEND_LIST = {"ROBLOX","builderman"} --Add players you want to ignore
  102.  
  103. _G.IGNORE_TEAM = true
  104. _G.START_AIMBOT = Enum.KeyCode.H
  105. _G.MAX_DIST = 5000
  106. _G.TARGET_PART = "Head"
  107.  
  108. _G.START_ESP = Enum.KeyCode.RightAlt
  109. _G.PREFIX = "/e " --If you want a space between the command and pref, you need to type a space! Ex: /ehelp . /e help
  110.  
  111.  
  112.  
  113. local startTime = tick()
  114. local AIMBOT = false
  115. local EspEnabled = false
  116.  
  117. local Players = game:GetService("Players")
  118. local StarterGui = game:GetService("StarterGui")
  119. local CoreGui = game:GetService("CoreGui")
  120. local UIS = game:GetService("UserInputService")
  121. local RunService = game:GetService("RunService")
  122.  
  123. local plr = Players.LocalPlayer
  124. local camera = workspace.CurrentCamera
  125. local mouse = plr:GetMouse()
  126. local newray = Ray.new
  127.  
  128. local function RandomCharacters(length)
  129. local STR = ''
  130.  
  131. for i = 1, length do
  132. STR = STR .. string.char(math.random(65,90))
  133. end
  134.  
  135. return STR
  136. end
  137. local faces = {
  138. "Back",
  139. "Bottom",
  140. "Front",
  141. "Left",
  142. "Right",
  143. "Top"
  144. }
  145. local EspObjects = Instance.new("Folder")
  146. EspObjects.Parent = CoreGui
  147. EspObjects.Name = RandomCharacters(8)
  148.  
  149. local function SendMessage(txt,title,dur,size,color)
  150. print(txt)
  151. StarterGui:SetCore("ChatMakeSystemMessage",{
  152. Text = txt,
  153. Color = color,
  154. FontSize = size
  155. })
  156. StarterGui:SetCore("SendNotification",{
  157. Title = title,
  158. Text = txt,
  159. Duration = dur
  160. })
  161. end
  162. local function ChangeColor(player, color)
  163. if EspObjects:FindFirstChild(player) then
  164. for i,v in pairs(EspObjects:FindFirstChild(player):GetChildren()) do
  165. if v:IsA("SurfaceGui") then
  166. for _,x in pairs(v:GetChildren()) do
  167. if x:IsA("Frame") then
  168. x.BackgroundColor3 = color
  169. end
  170. end
  171. elseif v:IsA("BillboardGui") then
  172. for _,x in pairs(v:GetChildren()) do
  173. if x:IsA("TextLabel") then
  174. x.TextColor = color
  175. end
  176. end
  177. end
  178. end
  179. end
  180. end
  181. local function GetClosestPlayer(returnPlr,ignoreList)
  182. ignoreList = _G.FRIEND_LIST
  183. returnPlr = returnPlr or false
  184.  
  185. local ignoreTeam = _G.IGNORE_TEAM
  186. local maxdist = _G.MAX_DIST
  187. local targetpart = _G.TARGET_PART
  188.  
  189. if ignoreTeam == true then
  190. if #game:GetService("Teams"):GetChildren() <= 1 then
  191. ignoreTeam = false
  192. end
  193. if plr.Neutral == true then
  194. ignoreTeam = false
  195. end
  196. end
  197.  
  198. local temp1 = (maxdist)
  199. local FoundPlr
  200. local FoundPart
  201.  
  202. local Table = game.Players:GetPlayers()
  203. for _,v in pairs(Table) do
  204. local skip = false
  205. for _,i in pairs(ignoreList) do
  206. if i:lower() == v.Name:lower() then
  207. skip = true
  208. end
  209. end
  210. if ignoreTeam == true then
  211. if v.Team == plr.Team then
  212. skip = true
  213. end
  214. end
  215. if v.Character == nil or v.Character:FindFirstChild(targetpart) == nil then
  216. skip = true
  217. end
  218.  
  219. if skip == false then
  220. if (temp1 ~= nil and v.Character:FindFirstChild(targetpart) and plr.Character ~= nil and plr.Character:FindFirstChild(targetpart)) then
  221. if temp1 > (plr.Character.Head.Position - v.Character:FindFirstChild(targetpart).Position).magnitude then
  222. local vChar = v.Character
  223. if vChar:FindFirstChild("Humanoid") then
  224. local vHuman = vChar:FindFirstChild("Humanoid")
  225. if vHuman.Health > 0 then
  226. local dist = (plr.Character.Head.Position - vChar:FindFirstChild(targetpart).Position).magnitude
  227. if dist <= maxdist then
  228. local ray = newray(plr.Character.Head.CFrame.p, (vChar:FindFirstChild(targetpart).CFrame.p - plr.Character.Head.CFrame.p).unit * _G.MAX_DIST)
  229. local hitPart,position = workspace:FindPartOnRay(ray,plr.Character)
  230.  
  231. if hitPart then
  232. if hitPart:IsDescendantOf(vChar) then
  233. temp1 = dist
  234. FoundPlr = v
  235. FoundPart = vChar:FindFirstChild(targetpart)
  236. end
  237. end
  238. end
  239. end
  240. end
  241. end
  242. end
  243. end
  244. end
  245. if returnPlr == false then
  246. return FoundPart
  247. elseif returnPlr == true then
  248. return FoundPlr
  249. end
  250. end
  251. local function CreateEspBox(pObj, color)
  252. if (pObj:IsA("Part") and pObj.Parent:IsA("Model") and pObj.Parent ~= workspace) then
  253. for i,v in pairs(EspObjects:GetChildren()) do
  254. if v.Name == pObj.Parent.Name then
  255. return nil
  256. end
  257. end
  258. local newFlder = Instance.new("Folder")
  259. newFlder.Parent = EspObjects
  260. newFlder.Name = pObj.Parent.Name
  261.  
  262. for i,v in pairs(faces) do
  263. local surfGui = Instance.new("SurfaceGui")
  264. surfGui.AlwaysOnTop = true
  265. surfGui.Adornee = pObj
  266. surfGui.Face = v
  267.  
  268. local frme = Instance.new("Frame")
  269. frme.Size = UDim2.new(1,0,1,0)
  270. frme.BackgroundColor3 = color
  271. frme.BackgroundTransparency = .5
  272. frme.BorderSizePixel = 0
  273. frme.Parent = surfGui
  274.  
  275. surfGui.Parent = newFlder
  276. end
  277. local bbGui = Instance.new("BillboardGui")
  278. bbGui.Adornee = pObj
  279. bbGui.Size = UDim2.new(5.5,0,1.75,0)
  280. bbGui.ExtentsOffset = Vector3.new(0,2.5,0)
  281. bbGui.AlwaysOnTop = true
  282. local txtLab = Instance.new("TextLabel")
  283. txtLab.Text = pObj.Parent.Name
  284. txtLab.TextColor3 = color
  285. txtLab.TextScaled = false
  286. txtLab.TextSize = 17
  287. txtLab.Size = UDim2.new(1,0,1,0)
  288. txtLab.BackgroundTransparency = 1
  289. txtLab.BorderSizePixel = 0
  290. txtLab.Parent = bbGui
  291. bbGui.Parent = newFlder
  292.  
  293. local objPar = Instance.new("ObjectValue")
  294. objPar.Value = pObj
  295. objPar.Parent = newFlder
  296. objPar.Name = "pObj"
  297.  
  298. return newFlder
  299. end
  300. return nil
  301. end
  302. local function ClearEsp()
  303. EspObjects:ClearAllChildren()
  304. end
  305. local function ConnectEsp(player)
  306. local func1
  307. local func2
  308. if player.Character ~= nil and player.Character:FindFirstChild("Head") then
  309. if plr.Team == nil or player.Team == nil or plr.Neutral == true or player.Neutral == true then
  310. local fldr = CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  311. if fldr ~= nil then
  312. local func3
  313. func3 = fldr.pObj.Changed:Connect(function()
  314. if fldr.pObj.Value == nil then
  315. if EspObjects:FindFirstChild(player.Name) then
  316. EspObjects:FindFirstChild(player.Name):Destroy()
  317. end
  318. func3:Disconnect()
  319. end
  320. end)
  321. end
  322. elseif plr.Team == player.Team then
  323. CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(0,255,0))
  324. elseif plr.Team ~= player.Team then
  325. CreateEspBox(player.Character:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  326. end
  327. end
  328. func1 = player.CharacterAdded:Connect(function(char)
  329. wait(1)
  330. if player.Character ~= nil then
  331. func2 = player.Character:WaitForChild("Humanoid").Died:Connect(function()
  332. if EspObjects:FindFirstChild(player.Name) then
  333. EspObjects:FindFirstChild(player.Name):Destroy()
  334. end
  335. end)
  336. end
  337. if EspEnabled == true then
  338. if plr.Team == nil or player.Team == nil or plr.Neutral == true or player.Neutral == true then
  339. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  340. elseif plr.Team == player.Team then
  341. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(0,255,0))
  342. elseif plr.Team ~= player.Team then
  343. CreateEspBox(char:FindFirstChild("Head"), Color3.fromRGB(255,0,0))
  344. end
  345. else
  346. if EspObjects:FindFirstChild(player.Name) then
  347. EspObjects:FindFirstChild(player.Name):Destroy()
  348. end
  349. func2:Disconnect()
  350. func1:Disconnect()
  351. end
  352. end)
  353. if player.Character ~= nil then
  354. func2 = player.Character:WaitForChild("Humanoid").Died:Connect(function()
  355. if EspObjects:FindFirstChild(player.Name) then
  356. EspObjects:FindFirstChild(player.Name):Destroy()
  357. end
  358. end)
  359. end
  360. return
  361. end
  362. local function EnableEsp()
  363. if EspEnabled == true then
  364. for i,v in pairs(Players:GetPlayers()) do
  365. if v ~= plr then
  366. ConnectEsp(v)
  367. end
  368. end
  369. end
  370. end
  371. Players.PlayerAdded:Connect(function(player)
  372. if EspEnabled == true then
  373. ConnectEsp(player)
  374. end
  375. end)
  376. Players.PlayerRemoving:Connect(function(player)
  377. if EspObjects:FindFirstChild(player.Name) then
  378. EspObjects:FindFirstChild(player.Name):Destroy()
  379. end
  380. end)
  381. UIS.InputBegan:Connect(function(KEY, gpe)
  382. if gpe then return end;
  383. if KEY.KeyCode == _G.START_AIMBOT then
  384. if AIMBOT == false then
  385. AIMBOT = true
  386. SendMessage("Aimbot enabled.",
  387. "AimHot has been enabled.",
  388. 3,
  389. Enum.FontSize.Size28,
  390. Color3.fromRGB(200,50,50)
  391. )
  392. elseif AIMBOT == true then
  393. AIMBOT = false
  394. SendMessage("Aimbot disabled.",
  395. "AimHot has been disabled.",
  396. 3,
  397. Enum.FontSize.Size28,
  398. Color3.fromRGB(200,50,50)
  399. )
  400. end
  401. end
  402. if KEY.KeyCode == _G.START_ESP then
  403. if EspEnabled == false then
  404. SendMessage("ESP has been enabled.",
  405. "ESP enabled;",
  406. 3,
  407. Enum.FontSize.Size28,
  408. Color3.fromRGB(200,50,50)
  409. )
  410. EspEnabled = true
  411. EnableEsp()
  412. while EspEnabled == true do
  413. ClearEsp()
  414. EnableEsp()
  415. wait(1)
  416. end
  417. elseif EspEnabled == true then
  418. SendMessage("ESP has been disabled.",
  419. "ESP disabled;",
  420. 3,
  421. Enum.FontSize.Size28,
  422. Color3.fromRGB(200,50,50)
  423. )
  424. EspEnabled = false
  425. ClearEsp()
  426. end
  427. end
  428. end)
  429.  
  430. RunService.RenderStepped:Connect(function()
  431. if (AIMBOT == true and plr.Character ~= nil and plr.Character:FindFirstChild("Humanoid") and plr.Character.Humanoid.Health > 0) then
  432. local closestPart = GetClosestPlayer(false,{})
  433. if closestPart ~= nil then
  434. camera.CoordinateFrame = CFrame.new(camera.CoordinateFrame.p, closestPart.CFrame.p)
  435. if _G.AUTO_TRIGGER == true then
  436. mouse1click()
  437. end
  438. end
  439. end
  440. end)
  441. _G.AIMHOT_SECRETKEY = "dF10qLMn" --Not kind of secret but..
  442.  
  443. local helptxt = (
  444. "AimHot loaded. Time taken: ".. tick()-startTime .."\n"..
  445. "AimHot made by Mr.Thc#6299." .."\n"..
  446. " Command prefix are: "..(_G.PREFIX) .."\n"..
  447. " Commands are;" .."\n"..
  448. " <prefix>maxdist <number> (counted in studs)" .."\n"..
  449. " <prefix>ignoreteam <bool> (true/false)" .."\n"..
  450. " <prefix>targetpart <string> (Head, Torso etc.)" .."\n"..
  451. " <prefix>addfriend <plrname> (ROBLOX, etc.)" .."\n"..
  452. " <prefix>removefriend <plrname> (ROBLOX, etc.)" .."\n"..
  453. " <prefix>changepref <newprefix>" .."\n"..
  454. " <prefix>friends" .."\n"..
  455. " <prefix>help" .."\n"..
  456. " /e reset (will set all settings to regular.)" .."\n"..
  457. " Have fun!"
  458. )
  459.  
  460. plr.Chatted:Connect(function(msg)
  461. local pref = _G.PREFIX
  462. if type(pref) ~= "string" then
  463. print("Prefix must be a string!")
  464. end
  465.  
  466. if string.sub(msg,1,8+pref:len()) == pref.."maxdist " then
  467. local maxdist = tonumber(string.sub(msg,9,msg:len()))
  468. if type(maxdist) == "number" then
  469. _G.MAX_DIST = maxdist
  470. SendMessage("Changed maxdist to; "..(tostring(maxdist)),
  471. "Setting Changed;",
  472. 3,
  473. Enum.FontSize.Size28,
  474. Color3.fromRGB(200,50,50)
  475. )
  476. end
  477. end
  478. if string.sub(msg,1,11+pref:len()) == pref.."ignoreteam " then
  479. local setting = string.sub(msg,12,msg:len()):lower()
  480. print(setting)
  481. if setting == "true" or "false" then
  482. _G.IGNORE_TEAM = setting
  483.  
  484. SendMessage("Changed ignoreteam to; "..(tostring(setting)),
  485. "Setting Changed;",
  486. 3,
  487. Enum.FontSize.Size28,
  488. Color3.fromRGB(200,50,50)
  489. )
  490. end
  491. end
  492. if string.sub(msg,1,11+pref:len()) == pref.."targetpart " then
  493. local setting = string.sub(msg,12,msg:len())
  494. if type(setting) == "string" then
  495. _G.TARGET_PART = setting
  496.  
  497. SendMessage("Changed targetpart to; "..(tostring(setting)),
  498. "Setting Changed;",
  499. 3,
  500. Enum.FontSize.Size28,
  501. Color3.fromRGB(200,50,50)
  502. )
  503. end
  504. end
  505. if string.sub(msg,1,13+pref:len()) == pref.."removefriend " then
  506. local setting = string.sub(msg,14,msg:len())
  507. if type(setting) == "string" then
  508. for i,v in pairs(_G.FRIEND_LIST) do
  509. if v:lower() == setting:lower() then
  510. table.remove(_G.FRIEND_LIST,i)
  511. end
  512. end
  513. SendMessage("Removed player from friend list; "..(tostring(setting)),
  514. "Friend removed;",
  515. 3,
  516. Enum.FontSize.Size28,
  517. Color3.fromRGB(200,50,50)
  518. )
  519. end
  520. end
  521. if string.sub(msg,1,10+pref:len()) == pref.."addfriend " then
  522. local setting = string.sub(msg,11,msg:len())
  523. if type(setting) == "string" then
  524. for i,v in pairs(_G.FRIEND_LIST) do
  525. if v == setting:lower() then
  526. return
  527. end
  528. end
  529. table.insert(_G.FRIEND_LIST,setting:lower())
  530. SendMessage("Added player to friend list; "..(tostring(setting)),
  531. "Friend added;",
  532. 3,
  533. Enum.FontSize.Size28,
  534. Color3.fromRGB(200,50,50)
  535. )
  536. end
  537. end
  538. if string.sub(msg,1,7+pref:len()) == pref.."friends" then
  539. local friends = ""
  540. for i,v in pairs(_G.FRIEND_LIST) do
  541. if i == 1 then
  542. friends = v
  543. else
  544. friends = friends..", "..v
  545. end
  546. end
  547. SendMessage("Your friends are; " .."\n".. friends,
  548. "Your friends;",
  549. 3,
  550. Enum.FontSize.Size28,
  551. Color3.fromRGB(200,50,50)
  552. )
  553. end
  554. if string.sub(msg,1,11+pref:len()) == pref.."changepref " then
  555. local setting = string.sub(msg,12+pref:len(),msg:len())
  556. if type(setting) == "string" then
  557. _G.PREFIX = setting
  558. SendMessage("Changed prefix to; "..setting,
  559. "Setting changed;",
  560. 3,
  561. Enum.FontSize.Size28,
  562. Color3.fromRGB(200,50,50)
  563. )
  564. end
  565. end
  566. if string.sub(msg,1,4+pref:len()) == pref.."help" then
  567. SendMessage(helptxt,
  568. "AimHot by Mr.Thc#6299;",
  569. 3,
  570. Enum.FontSize.Size28,
  571. Color3.fromRGB(200,50,50)
  572. )
  573. end
  574. if msg == "/e reset" then
  575. _G.FRIEND_LIST = {"ROBLOX","builderman"}
  576.  
  577. _G.IGNORE_TEAM = true
  578. _G.START_AIMBOT = Enum.KeyCode.H
  579. _G.MAX_DIST = 5000
  580. _G.TARGET_PART = "Head"
  581. _G.PREFIX = "/e "
  582.  
  583. SendMessage("All settings are set back to regular.",
  584. "Settings reseted.",
  585. Enum.FontSize.Size28,
  586. Color3.fromRGB(200,50,50)
  587. )
  588. end
  589. end)
  590.  
  591. SendMessage(helptxt,
  592. "AimHot by Mr.Thc#6299;",
  593. 3,
  594. Enum.FontSize.Size28,
  595. Color3.fromRGB(200,50,50)
  596. )
  597. _G.AIMHOT_VERSION = "1.0"
  598. end)
  599.  
  600. TextLabel_2.Parent = Frame_2
  601. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  602. TextLabel_2.BackgroundTransparency = 5.000
  603. TextLabel_2.Position = UDim2.new(0.142156869, 0, 0, 0)
  604. TextLabel_2.Size = UDim2.new(0, 145, 0, 39)
  605. TextLabel_2.Font = Enum.Font.SourceSans
  606. TextLabel_2.Text = "DRIVING SIM"
  607. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  608. TextLabel_2.TextScaled = true
  609. TextLabel_2.TextSize = 14.000
  610. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement