Advertisement
MadDog_YT

WeDon'tCare Texting Simulator GUI

Jan 19th, 2019
8,298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.83 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local SmhTexting = Instance.new("ScreenGui")
  5. local LoginFrame = Instance.new("Frame")
  6. local UsernameBox = Instance.new("TextBox")
  7. local PasswordBot = Instance.new("TextBox")
  8. local LoginButton = Instance.new("TextButton")
  9. local LoginExit = Instance.new("TextButton")
  10. local GuiTitle = Instance.new("TextLabel")
  11. local OpenCloseFrame = Instance.new("Frame")
  12. local OpenButton = Instance.new("TextButton")
  13. local CloseButton = Instance.new("TextButton")
  14. local MainFrame = Instance.new("Frame")
  15. local GuiTitle_2 = Instance.new("TextLabel")
  16. local AutoFarm = Instance.new("TextButton")
  17. local BuyPhone = Instance.new("TextButton")
  18. local BuyEmoji = Instance.new("TextButton")
  19. local BuyTablet = Instance.new("TextButton")
  20. local Teleport = Instance.new("TextButton")
  21. local AchivementButton = Instance.new("TextButton")
  22. local ObbyButton = Instance.new("TextButton")
  23. local MainExit = Instance.new("TextButton")
  24. local CheckLogin = Instance.new("TextLabel")
  25. local TeleportFrame = Instance.new("Frame")
  26. local VIPTeleport = Instance.new("TextButton")
  27. local DiamondHavenTeleport = Instance.new("TextButton")
  28. local HatsTeleport = Instance.new("TextButton")
  29. local TeleportExit = Instance.new("TextButton")
  30. local AchivementFrame = Instance.new("Frame")
  31. local RedChest = Instance.new("TextButton")
  32. local BlueChest = Instance.new("TextButton")
  33. local PurpleChest = Instance.new("TextButton")
  34. local AchivementExit = Instance.new("TextButton")
  35. local ObbyFrame = Instance.new("Frame")
  36. local LogObby = Instance.new("TextButton")
  37. local ArcticObby = Instance.new("TextButton")
  38. local JungleObby = Instance.new("TextButton")
  39. local SkyHighObby = Instance.new("TextButton")
  40. local LavaObby = Instance.new("TextButton")
  41. local DailyChest = Instance.new("TextButton")
  42. local Santaobby = Instance.new("TextButton")
  43. local ObbyExit = Instance.new("TextButton")
  44. --Properties:
  45. SmhTexting.Name = "SmhTexting"
  46. SmhTexting.Parent = game.CoreGui
  47.  
  48. LoginFrame.Name = "LoginFrame"
  49. LoginFrame.Parent = SmhTexting
  50. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  51. LoginFrame.BackgroundTransparency = 0.5
  52. LoginFrame.Position = UDim2.new(0.290240824, 0, 0.131474108, 0)
  53. LoginFrame.Size = UDim2.new(0, 392, 0, 316)
  54. LoginFrame.Visible = true
  55. LoginFrame.Active = true
  56. LoginFrame.Draggable = true
  57.  
  58.  
  59. UsernameBox.Name = "UsernameBox"
  60. UsernameBox.Parent = LoginFrame
  61. UsernameBox.BackgroundColor3 = Color3.new(1, 1, 1)
  62. UsernameBox.Position = UDim2.new(0.163884491, 0, 0.270497918, 0)
  63. UsernameBox.Size = UDim2.new(0, 263, 0, 50)
  64. UsernameBox.Font = Enum.Font.SourceSans
  65. UsernameBox.Text = ""
  66. UsernameBox.TextColor3 = Color3.new(0, 0, 0)
  67. UsernameBox.TextSize = 14
  68.  
  69. PasswordBot.Name = "PasswordBot"
  70. PasswordBot.Parent = LoginFrame
  71. PasswordBot.BackgroundColor3 = Color3.new(1, 1, 1)
  72. PasswordBot.Position = UDim2.new(0.163884535, 0, 0.503368318, 0)
  73. PasswordBot.Size = UDim2.new(0, 263, 0, 50)
  74. PasswordBot.Font = Enum.Font.SourceSans
  75. PasswordBot.Text = ""
  76. PasswordBot.TextColor3 = Color3.new(0, 0, 0)
  77. PasswordBot.TextSize = 14
  78.  
  79. LoginButton.Name = "LoginButton"
  80. LoginButton.Parent = LoginFrame
  81. LoginButton.BackgroundColor3 = Color3.new(1, 1, 1)
  82. LoginButton.Position = UDim2.new(0.243068337, 0, 0.737126768, 0)
  83. LoginButton.Size = UDim2.new(0, 200, 0, 50)
  84. LoginButton.Font = Enum.Font.SourceSans
  85. LoginButton.Text = "Login"
  86. LoginButton.TextColor3 = Color3.new(0, 0, 0)
  87. LoginButton.TextScaled = true
  88. LoginButton.TextSize = 14
  89. LoginButton.TextWrapped = true
  90. LoginButton.MouseButton1Click:Connect(function()
  91. if UsernameBox.Text == "texting" and PasswordBot.Text == "simulator" then
  92. CheckLogin.Text = "goodjob"
  93. LoginFrame.Visible = false
  94. MainFrame.Visible = true
  95. else
  96. LoginButton.Text = "Login Information Invalid!"
  97. wait(2)
  98. LoginButton.Text = "Login"
  99. end
  100. end)
  101.  
  102. LoginExit.Name = "LoginExit"
  103. LoginExit.Parent = LoginFrame
  104. LoginExit.BackgroundColor3 = Color3.new(1, 1, 1)
  105. LoginExit.BackgroundTransparency = 1
  106. LoginExit.Position = UDim2.new(0.908884645, 0, -0.00337960455, 0)
  107. LoginExit.Size = UDim2.new(0, 35, 0, 50)
  108. LoginExit.Font = Enum.Font.SourceSans
  109. LoginExit.Text = "X"
  110. LoginExit.TextColor3 = Color3.new(1, 0, 0)
  111. LoginExit.TextScaled = true
  112. LoginExit.TextSize = 14
  113. LoginExit.TextStrokeTransparency = 0
  114. LoginExit.TextWrapped = true
  115. LoginExit.MouseButton1Click:Connect(function()
  116. LoginExit.Visible = false
  117. OpenButton.Visible = true
  118. CloseButton.Visible = false
  119. end)
  120.  
  121.  
  122. GuiTitle.Name = "GuiTitle"
  123. GuiTitle.Parent = LoginFrame
  124. GuiTitle.BackgroundColor3 = Color3.new(1, 1, 1)
  125. GuiTitle.BackgroundTransparency = 1
  126. GuiTitle.Position = UDim2.new(0.091809243, 0, -0.000949055888, 0)
  127. GuiTitle.Size = UDim2.new(0, 302, 0, 72)
  128. GuiTitle.ZIndex = 2
  129. GuiTitle.Font = Enum.Font.Garamond
  130. GuiTitle.Text = "SmhTexting"
  131. GuiTitle.TextColor3 = Color3.new(1, 1, 1)
  132. GuiTitle.TextScaled = true
  133. GuiTitle.TextSize = 14
  134. GuiTitle.TextStrokeTransparency = 0
  135. GuiTitle.TextWrapped = true
  136.  
  137. OpenCloseFrame.Name = "OpenCloseFrame"
  138. OpenCloseFrame.Parent = SmhTexting
  139. OpenCloseFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  140. OpenCloseFrame.BackgroundTransparency = 1
  141. OpenCloseFrame.Position = UDim2.new(-0.000371137226, 0, 0.77888447, 0)
  142. OpenCloseFrame.Size = UDim2.new(0, 114, 0, 51)
  143.  
  144. OpenButton.Name = "OpenButton"
  145. OpenButton.Parent = OpenCloseFrame
  146. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  147. OpenButton.Size = UDim2.new(0, 114, 0, 50)
  148. OpenButton.Visible = false
  149. OpenButton.Font = Enum.Font.SourceSans
  150. OpenButton.Text = "OPEN"
  151. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  152. OpenButton.TextScaled = true
  153. OpenButton.TextSize = 14
  154. OpenButton.TextWrapped = true
  155. OpenButton.MouseButton1Click:Connect(function()
  156. if CheckLogin.Text == "goodjob" then
  157. MainFrame.Visible = true
  158. OpenButton.Visible = false
  159. else
  160. LoginFrame.Visible = true
  161. OpenButton.Visible = false
  162. end
  163. end)
  164.  
  165. CloseButton.Name = "CloseButton"
  166. CloseButton.Parent = OpenCloseFrame
  167. CloseButton.BackgroundColor3 = Color3.new(0, 0, 0)
  168. CloseButton.Size = UDim2.new(0, 114, 0, 50)
  169. CloseButton.Font = Enum.Font.SourceSans
  170. CloseButton.Text = "CLOSE"
  171. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  172. CloseButton.TextScaled = true
  173. CloseButton.TextSize = 14
  174. CloseButton.TextWrapped = true
  175. CloseButton.MouseButton1Click:Connect(function()
  176. OpenButton.Visible = true
  177. CloseButton.Visible = false
  178. MainFrame.Visible = false
  179. AchivementFrame.Visible = false
  180. ObbyFrame.Visible = false
  181. TeleportFrame.Visible = false
  182. LoginFrame.Visible = false
  183. end)
  184.  
  185. MainFrame.Name = "MainFrame"
  186. MainFrame.Parent = SmhTexting
  187. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  188. MainFrame.BackgroundTransparency = 0.30000001192093
  189. MainFrame.Position = UDim2.new(0.184002161, 0, 0.197415262, 0)
  190. MainFrame.Size = UDim2.new(0, 450, 0, 306)
  191. MainFrame.Visible = false
  192. MainFrame.Active = true
  193. MainFrame.Draggable = true
  194.  
  195. GuiTitle_2.Name = "GuiTitle"
  196. GuiTitle_2.Parent = MainFrame
  197. GuiTitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  198. GuiTitle_2.BackgroundTransparency = 1
  199. GuiTitle_2.Position = UDim2.new(0.162920356, 0, -0.0306074619, 0)
  200. GuiTitle_2.Size = UDim2.new(0, 302, 0, 72)
  201. GuiTitle_2.ZIndex = 2
  202. GuiTitle_2.Font = Enum.Font.Garamond
  203. GuiTitle_2.Text = "WeDontCare"
  204. GuiTitle_2.TextColor3 = Color3.new(1, 1, 1)
  205. GuiTitle_2.TextScaled = true
  206. GuiTitle_2.TextSize = 14
  207. GuiTitle_2.TextStrokeTransparency = 0
  208. GuiTitle_2.TextWrapped = true
  209.  
  210. AutoFarm.Name = "AutoFarm"
  211. AutoFarm.Parent = MainFrame
  212. AutoFarm.BackgroundColor3 = Color3.new(1, 1, 1)
  213. AutoFarm.Position = UDim2.new(0.0383520499, 0, 0.206773415, 0)
  214. AutoFarm.Size = UDim2.new(0, 200, 0, 50)
  215. AutoFarm.Font = Enum.Font.SourceSans
  216. AutoFarm.Text = "AUTO FARM"
  217. AutoFarm.TextColor3 = Color3.new(0, 0, 0)
  218. AutoFarm.TextScaled = true
  219. AutoFarm.TextSize = 20
  220. AutoFarm.TextStrokeTransparency = 0.5
  221. AutoFarm.TextWrapped = true
  222. AutoFarm.MouseButton1Click:Connect(function()
  223. _G.on = true
  224. while _G.on do
  225. wait()
  226. local amount = 100 --[[ Amount of times to run ]]
  227. for z = 1, amount do
  228. local remote = Game["ReplicatedStorage"]["ToolEvents"]["CashEvent"]
  229. local args = {}
  230. remote:FireServer(unpack(args))
  231. end
  232. end
  233. end)
  234.  
  235. BuyPhone.Name = "BuyPhone"
  236. BuyPhone.Parent = MainFrame
  237. BuyPhone.BackgroundColor3 = Color3.new(1, 1, 1)
  238. BuyPhone.Position = UDim2.new(0.516129851, 0, 0.206773415, 0)
  239. BuyPhone.Size = UDim2.new(0, 200, 0, 50)
  240. BuyPhone.Font = Enum.Font.SourceSans
  241. BuyPhone.Text = "BUY PHONE (NEED MOENY)"
  242. BuyPhone.TextColor3 = Color3.new(0, 0, 0)
  243. BuyPhone.TextScaled = true
  244. BuyPhone.TextSize = 20
  245. BuyPhone.TextStrokeTransparency = 0.5
  246. BuyPhone.TextWrapped = true
  247. BuyPhone.MouseButton1Click:Connect(function()
  248. local remote = game["ReplicatedStorage"]["PhoneShopBuy"]
  249. local args = {
  250. [1] = 34 --[[number]]
  251. }
  252. remote:FireServer(unpack(args))
  253.  
  254. end)
  255.  
  256.  
  257. BuyEmoji.Name = "BuyEmoji"
  258. BuyEmoji.Parent = MainFrame
  259. BuyEmoji.BackgroundColor3 = Color3.new(1, 1, 1)
  260. BuyEmoji.Position = UDim2.new(0.516129851, 0, 0.392184794, 0)
  261. BuyEmoji.Size = UDim2.new(0, 200, 0, 50)
  262. BuyEmoji.Font = Enum.Font.SourceSans
  263. BuyEmoji.Text = "BUY EMOJI (NEED DIMAONDS)"
  264. BuyEmoji.TextColor3 = Color3.new(0, 0, 0)
  265. BuyEmoji.TextScaled = true
  266. BuyEmoji.TextSize = 20
  267. BuyEmoji.TextStrokeTransparency = 0.5
  268. BuyEmoji.TextWrapped = true
  269. BuyEmoji.MouseButton1Click:Connect(function()
  270. local remote = game["ReplicatedStorage"]["EmojiShopBuy"]
  271. local args = {
  272. [1] = 25 --[[number]]
  273. }
  274. remote:FireServer(unpack(args))
  275. end)
  276.  
  277. BuyTablet.Name = "BuyTablet"
  278. BuyTablet.Parent = MainFrame
  279. BuyTablet.BackgroundColor3 = Color3.new(1, 1, 1)
  280. BuyTablet.Position = UDim2.new(0.0383520499, 0, 0.394219428, 0)
  281. BuyTablet.Size = UDim2.new(0, 200, 0, 50)
  282. BuyTablet.Font = Enum.Font.SourceSans
  283. BuyTablet.Text = "Buy Tablet (Need Money)"
  284. BuyTablet.TextColor3 = Color3.new(0, 0, 0)
  285. BuyTablet.TextScaled = true
  286. BuyTablet.TextSize = 20
  287. BuyTablet.TextStrokeTransparency = 0.5
  288. BuyTablet.TextWrapped = true
  289. BuyTablet.MouseButton1Click:Connect(function()
  290. local remote = Game["ReplicatedStorage"]["TabletShopBuy"]
  291. local args = {
  292. [1] = 10 --[[number]]
  293. }
  294. remote:FireServer(unpack(args))
  295.  
  296. end)
  297.  
  298. Teleport.Name = "Teleport"
  299. Teleport.Parent = MainFrame
  300. Teleport.BackgroundColor3 = Color3.new(1, 1, 1)
  301. Teleport.Position = UDim2.new(0.516129851, 0, 0.593565822, 0)
  302. Teleport.Size = UDim2.new(0, 200, 0, 50)
  303. Teleport.Font = Enum.Font.SourceSans
  304. Teleport.Text = "Areas"
  305. Teleport.TextColor3 = Color3.new(0, 0, 0)
  306. Teleport.TextScaled = true
  307. Teleport.TextSize = 20
  308. Teleport.TextStrokeTransparency = 0.5
  309. Teleport.TextWrapped = true
  310. Teleport.MouseButton1Click:Connect(function()
  311. TeleportFrame.Visible = true
  312. end)
  313.  
  314. AchivementButton.Name = "AchivementButton"
  315. AchivementButton.Parent = MainFrame
  316. AchivementButton.BackgroundColor3 = Color3.new(1, 1, 1)
  317. AchivementButton.Position = UDim2.new(0.0383520499, 0, 0.591531157, 0)
  318. AchivementButton.Size = UDim2.new(0, 200, 0, 50)
  319. AchivementButton.Font = Enum.Font.SourceSans
  320. AchivementButton.Text = "ACHIEVEMENT "
  321. AchivementButton.TextColor3 = Color3.new(0, 0, 0)
  322. AchivementButton.TextScaled = true
  323. AchivementButton.TextSize = 20
  324. AchivementButton.TextStrokeTransparency = 0.5
  325. AchivementButton.TextWrapped = true
  326. AchivementButton.MouseButton1Click:Connect(function()
  327. AchivementFrame.Visible = true
  328. end)
  329.  
  330. ObbyButton.Name = "ObbyButton"
  331. ObbyButton.Parent = MainFrame
  332. ObbyButton.BackgroundColor3 = Color3.new(1, 1, 1)
  333. ObbyButton.Position = UDim2.new(0.0383520499, 0, 0.784341633, 0)
  334. ObbyButton.Size = UDim2.new(0, 415, 0, 50)
  335. ObbyButton.Font = Enum.Font.SourceSans
  336. ObbyButton.Text = "OBBY TELEPORT"
  337. ObbyButton.TextColor3 = Color3.new(0, 0, 0)
  338. ObbyButton.TextScaled = true
  339. ObbyButton.TextSize = 20
  340. ObbyButton.TextStrokeTransparency = 0.5
  341. ObbyButton.TextWrapped = true
  342. ObbyButton.MouseButton1Click:Connect(function()
  343. ObbyFrame.Visible = true
  344. end)
  345.  
  346. MainExit.Name = "MainExit"
  347. MainExit.Parent = MainFrame
  348. MainExit.BackgroundColor3 = Color3.new(1, 1, 1)
  349. MainExit.BackgroundTransparency = 1
  350. MainExit.Position = UDim2.new(0.908884645, 0, -0.00337960455, 0)
  351. MainExit.Size = UDim2.new(0, 35, 0, 50)
  352. MainExit.Font = Enum.Font.SourceSans
  353. MainExit.Text = "X"
  354. MainExit.TextColor3 = Color3.new(1, 0, 0)
  355. MainExit.TextScaled = true
  356. MainExit.TextSize = 14
  357. MainExit.TextStrokeTransparency = 0
  358. MainExit.TextWrapped = true
  359. MainExit.MouseButton1Click:Connect(function()
  360. MainFrame.Visible = false
  361. AchivementFrame.Visible = false
  362. ObbyFrame.Visible = false
  363. TeleportFrame.Visible = false
  364. OpenButton.Visible = true
  365. CloseButton.Visible = false
  366. end)
  367.  
  368. CheckLogin.Name = "CheckLogin"
  369. CheckLogin.Parent = MainFrame
  370. CheckLogin.BackgroundColor3 = Color3.new(1, 1, 1)
  371. CheckLogin.BackgroundTransparency = 1
  372. CheckLogin.Position = UDim2.new(-0.00152404781, 0, -0.00111379474, 0)
  373. CheckLogin.Size = UDim2.new(0, 35, 0, 32)
  374. CheckLogin.ZIndex = 2
  375. CheckLogin.Font = Enum.Font.Garamond
  376. CheckLogin.Text = ""
  377. CheckLogin.TextColor3 = Color3.new(0, 0, 0)
  378. CheckLogin.TextScaled = true
  379. CheckLogin.TextSize = 1
  380. CheckLogin.TextTransparency = 1
  381. CheckLogin.TextWrapped = true
  382.  
  383. TeleportFrame.Name = "TeleportFrame"
  384. TeleportFrame.Parent = SmhTexting
  385. TeleportFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  386. TeleportFrame.BackgroundTransparency = 0.30000001192093
  387. TeleportFrame.Position = UDim2.new(0.598979294, 0, 0.197415262, 0)
  388. TeleportFrame.Size = UDim2.new(0, 250, 0, 189)
  389. TeleportFrame.Visible = false
  390.  
  391. VIPTeleport.Name = "VIPTeleport"
  392. VIPTeleport.Parent = TeleportFrame
  393. VIPTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  394. VIPTeleport.Position = UDim2.new(0.0516236201, 0, 0.0620061494, 0)
  395. VIPTeleport.Size = UDim2.new(0, 200, 0, 50)
  396. VIPTeleport.Font = Enum.Font.SourceSans
  397. VIPTeleport.Text = "VIP Area"
  398. VIPTeleport.TextColor3 = Color3.new(0, 0, 0)
  399. VIPTeleport.TextScaled = true
  400. VIPTeleport.TextSize = 20
  401. VIPTeleport.TextStrokeTransparency = 0.5
  402. VIPTeleport.TextWrapped = true
  403. VIPTeleport.MouseButton1Click:Connect(function()
  404. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-282.743896, 1.06859887, -361.701202)
  405. end)
  406.  
  407. DiamondHavenTeleport.Name = "DiamondHavenTeleport"
  408. DiamondHavenTeleport.Parent = TeleportFrame
  409. DiamondHavenTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  410. DiamondHavenTeleport.Position = UDim2.new(0.0542230606, 0, 0.362870574, 0)
  411. DiamondHavenTeleport.Size = UDim2.new(0, 200, 0, 50)
  412. DiamondHavenTeleport.Font = Enum.Font.SourceSans
  413. DiamondHavenTeleport.Text = "DIAMOND HAVEN"
  414. DiamondHavenTeleport.TextColor3 = Color3.new(0, 0, 0)
  415. DiamondHavenTeleport.TextScaled = true
  416. DiamondHavenTeleport.TextSize = 20
  417. DiamondHavenTeleport.TextStrokeTransparency = 0.5
  418. DiamondHavenTeleport.TextWrapped = true
  419. DiamondHavenTeleport.MouseButton1Click:Connect(function()
  420. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-295.727814, 0.819720387, -643.793701)
  421. end)
  422.  
  423. HatsTeleport.Name = "HatsTeleport"
  424. HatsTeleport.Parent = TeleportFrame
  425. HatsTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
  426. HatsTeleport.Position = UDim2.new(0.0542230606, 0, 0.673518896, 0)
  427. HatsTeleport.Size = UDim2.new(0, 200, 0, 50)
  428. HatsTeleport.Font = Enum.Font.SourceSans
  429. HatsTeleport.Text = "HATS"
  430. HatsTeleport.TextColor3 = Color3.new(0, 0, 0)
  431. HatsTeleport.TextScaled = true
  432. HatsTeleport.TextSize = 20
  433. HatsTeleport.TextStrokeTransparency = 0.5
  434. HatsTeleport.TextWrapped = true
  435. HatsTeleport.MouseButton1Click:Connect(function()
  436. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-294.036194, 0.819720387, -852.874268)
  437. end)
  438.  
  439. TeleportExit.Name = "TeleportExit"
  440. TeleportExit.Parent = TeleportFrame
  441. TeleportExit.BackgroundColor3 = Color3.new(1, 1, 1)
  442. TeleportExit.BackgroundTransparency = 1
  443. TeleportExit.Position = UDim2.new(0.856884778, 0, -0.00337962015, 0)
  444. TeleportExit.Size = UDim2.new(0, 35, 0, 37)
  445. TeleportExit.Font = Enum.Font.SourceSans
  446. TeleportExit.Text = "X"
  447. TeleportExit.TextColor3 = Color3.new(1, 0, 0)
  448. TeleportExit.TextScaled = true
  449. TeleportExit.TextSize = 14
  450. TeleportExit.TextStrokeTransparency = 0
  451. TeleportExit.TextWrapped = true
  452. TeleportExit.MouseButton1Click:Connect(function()
  453. TeleportFrame.Visible = false
  454. end)
  455.  
  456. AchivementFrame.Name = "AchivementFrame"
  457. AchivementFrame.Parent = SmhTexting
  458. AchivementFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  459. AchivementFrame.BackgroundTransparency = 0.30000001192093
  460. AchivementFrame.Position = UDim2.new(0.598979294, 0, 0.197415262, 0)
  461. AchivementFrame.Size = UDim2.new(0, 238, 0, 189)
  462. AchivementFrame.Visible = false
  463.  
  464. RedChest.Name = "RedChest"
  465. RedChest.Parent = AchivementFrame
  466. RedChest.BackgroundColor3 = Color3.new(1, 1, 1)
  467. RedChest.Position = UDim2.new(0.0516236201, 0, 0.0620061494, 0)
  468. RedChest.Size = UDim2.new(0, 200, 0, 50)
  469. RedChest.Font = Enum.Font.SourceSans
  470. RedChest.Text = "RED ACHIEVEMENT CHEST"
  471. RedChest.TextColor3 = Color3.new(0, 0, 0)
  472. RedChest.TextScaled = true
  473. RedChest.TextSize = 20
  474. RedChest.TextStrokeTransparency = 0.5
  475. RedChest.TextWrapped = true
  476. RedChest.MouseButton1Click:Connect(function()
  477. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-524.887085, 2.93027544, -743.876099)
  478. end)
  479.  
  480. BlueChest.Name = "BlueChest"
  481. BlueChest.Parent = AchivementFrame
  482. BlueChest.BackgroundColor3 = Color3.new(1, 1, 1)
  483. BlueChest.Position = UDim2.new(0.0542230606, 0, 0.672896385, 0)
  484. BlueChest.Size = UDim2.new(0, 200, 0, 50)
  485. BlueChest.Font = Enum.Font.SourceSans
  486. BlueChest.Text = "BLUE ACHIEVEMENT CHEST"
  487. BlueChest.TextColor3 = Color3.new(0, 0, 0)
  488. BlueChest.TextScaled = true
  489. BlueChest.TextSize = 20
  490. BlueChest.TextStrokeTransparency = 0.5
  491. BlueChest.TextWrapped = true
  492. BlueChest.MouseButton1Click:Connect(function()
  493. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-722.336304, 3.03027868, -743.035095)
  494. end)
  495.  
  496. PurpleChest.Name = "PurpleChest"
  497. PurpleChest.Parent = AchivementFrame
  498. PurpleChest.BackgroundColor3 = Color3.new(1, 1, 1)
  499. PurpleChest.Position = UDim2.new(0.0542230606, 0, 0.363804281, 0)
  500. PurpleChest.Size = UDim2.new(0, 200, 0, 50)
  501. PurpleChest.Font = Enum.Font.SourceSans
  502. PurpleChest.Text = "PURPLE ACHIEVEMENT CHEST"
  503. PurpleChest.TextColor3 = Color3.new(0, 0, 0)
  504. PurpleChest.TextScaled = true
  505. PurpleChest.TextSize = 20
  506. PurpleChest.TextStrokeTransparency = 0.5
  507. PurpleChest.TextWrapped = true
  508. PurpleChest.MouseButton1Click:Connect(function()
  509. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-618.005493, 3.03029013, -742.943665)
  510. end)
  511.  
  512. AchivementExit.Name = "AchivementExit"
  513. AchivementExit.Parent = AchivementFrame
  514. AchivementExit.BackgroundColor3 = Color3.new(1, 1, 1)
  515. AchivementExit.BackgroundTransparency = 1
  516. AchivementExit.Position = UDim2.new(0.892054737, 0, -0.00709433854, 0)
  517. AchivementExit.Size = UDim2.new(0, 25, 0, 32)
  518. AchivementExit.Font = Enum.Font.SourceSans
  519. AchivementExit.Text = "X"
  520. AchivementExit.TextColor3 = Color3.new(1, 0, 0)
  521. AchivementExit.TextScaled = true
  522. AchivementExit.TextSize = 14
  523. AchivementExit.TextStrokeTransparency = 0
  524. AchivementExit.TextWrapped = true
  525. AchivementExit.MouseButton1Click:Connect(function()
  526. AchivementFrame.Visible = false
  527. end)
  528.  
  529. ObbyFrame.Name = "ObbyFrame"
  530. ObbyFrame.Parent = SmhTexting
  531. ObbyFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  532. ObbyFrame.BackgroundTransparency = 0.30000001192093
  533. ObbyFrame.Position = UDim2.new(0.598556519, 0, 0.197415262, 0)
  534. ObbyFrame.Size = UDim2.new(0, 374, 0, 306)
  535. ObbyFrame.Visible = false
  536.  
  537. LogObby.Name = "LogObby"
  538. LogObby.Parent = ObbyFrame
  539. LogObby.BackgroundColor3 = Color3.new(1, 1, 1)
  540. LogObby.Position = UDim2.new(0.0512573235, 0, 0.0620061345, 0)
  541. LogObby.Size = UDim2.new(0, 160, 0, 40)
  542. LogObby.Font = Enum.Font.SourceSans
  543. LogObby.Text = "LOG ADVENTURE OBBY"
  544. LogObby.TextColor3 = Color3.new(0, 0, 0)
  545. LogObby.TextScaled = true
  546. LogObby.TextSize = 20
  547. LogObby.TextStrokeTransparency = 0.5
  548. LogObby.TextWrapped = true
  549. LogObby.MouseButton1Click:Connect(function()
  550. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-665.632935, -44.6407661, -36.830719)
  551. end)
  552.  
  553. ArcticObby.Name = "ArcticObby"
  554. ArcticObby.Parent = ObbyFrame
  555. ArcticObby.BackgroundColor3 = Color3.new(1, 1, 1)
  556. ArcticObby.Position = UDim2.new(0.0497785769, 0, 0.423563242, 0)
  557. ArcticObby.Size = UDim2.new(0, 160, 0, 40)
  558. ArcticObby.Font = Enum.Font.SourceSans
  559. ArcticObby.Text = "ARCTIC HOP OBBY"
  560. ArcticObby.TextColor3 = Color3.new(0, 0, 0)
  561. ArcticObby.TextScaled = true
  562. ArcticObby.TextSize = 20
  563. ArcticObby.TextStrokeTransparency = 0.5
  564. ArcticObby.TextWrapped = true
  565. ArcticObby.MouseButton1Click:Connect(function()
  566. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1126.745, -66.9300156, 63.504467)
  567. end)
  568.  
  569. JungleObby.Name = "JungleObby"
  570. JungleObby.Parent = ObbyFrame
  571. JungleObby.BackgroundColor3 = Color3.new(1, 1, 1)
  572. JungleObby.Position = UDim2.new(0.0533408262, 0, 0.245118827, 0)
  573. JungleObby.Size = UDim2.new(0, 160, 0, 40)
  574. JungleObby.Font = Enum.Font.SourceSans
  575. JungleObby.Text = "JUNGLE HOP OBBY"
  576. JungleObby.TextColor3 = Color3.new(0, 0, 0)
  577. JungleObby.TextScaled = true
  578. JungleObby.TextSize = 20
  579. JungleObby.TextStrokeTransparency = 0.5
  580. JungleObby.TextWrapped = true
  581. JungleObby.MouseButton1Click:Connect(function()
  582. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-665.428406, -44.7602615, -37.1323318)
  583. end)
  584.  
  585. SkyHighObby.Name = "SkyHighObby"
  586. SkyHighObby.Parent = ObbyFrame
  587. SkyHighObby.BackgroundColor3 = Color3.new(1, 1, 1)
  588. SkyHighObby.Position = UDim2.new(0.0533408262, 0, 0.774530649, 0)
  589. SkyHighObby.Size = UDim2.new(0, 160, 0, 40)
  590. SkyHighObby.Font = Enum.Font.SourceSans
  591. SkyHighObby.Text = "SKY-HIGH FLOATING OBBY\n"
  592. SkyHighObby.TextColor3 = Color3.new(0, 0, 0)
  593. SkyHighObby.TextScaled = true
  594. SkyHighObby.TextSize = 20
  595. SkyHighObby.TextStrokeTransparency = 0.5
  596. SkyHighObby.TextWrapped = true
  597. SkyHighObby.MouseButton1Click:Connect(function()
  598. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-2885.94165, 543.764099, 24.4673805)
  599. end)
  600.  
  601. LavaObby.Name = "LavaObby"
  602. LavaObby.Parent = ObbyFrame
  603. LavaObby.BackgroundColor3 = Color3.new(1, 1, 1)
  604. LavaObby.Position = UDim2.new(0.0512573235, 0, 0.591417909, 0)
  605. LavaObby.Size = UDim2.new(0, 160, 0, 40)
  606. LavaObby.Font = Enum.Font.SourceSans
  607. LavaObby.Text = "LAVA ESCAPE OBBY"
  608. LavaObby.TextColor3 = Color3.new(0, 0, 0)
  609. LavaObby.TextScaled = true
  610. LavaObby.TextSize = 20
  611. LavaObby.TextStrokeTransparency = 0.5
  612. LavaObby.TextWrapped = true
  613. LavaObby.MouseButton1Click:Connect(function()
  614. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1243.53479, -46.7790947, -39.6373138)
  615. end)
  616.  
  617. DailyChest.Name = "DailyChest"
  618. DailyChest.Parent = ObbyFrame
  619. DailyChest.BackgroundColor3 = Color3.new(1, 1, 1)
  620. DailyChest.Position = UDim2.new(0.522785306, 0, 0.245118827, 0)
  621. DailyChest.Size = UDim2.new(0, 160, 0, 40)
  622. DailyChest.Font = Enum.Font.SourceSans
  623. DailyChest.Text = "DAILY REWARD CHEST"
  624. DailyChest.TextColor3 = Color3.new(0, 0, 0)
  625. DailyChest.TextScaled = true
  626. DailyChest.TextSize = 20
  627. DailyChest.TextStrokeTransparency = 0.5
  628. DailyChest.TextWrapped = true
  629. DailyChest.MouseButton1Click:Connect(function()
  630. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1243.53479, -46.7790947, -39.6373138)
  631. end)
  632.  
  633. Santaobby.Name = "Santaobby"
  634. Santaobby.Parent = ObbyFrame
  635. Santaobby.BackgroundColor3 = Color3.new(1, 1, 1)
  636. Santaobby.Position = UDim2.new(0.523479521, 0, 0.0652741119, 0)
  637. Santaobby.Size = UDim2.new(0, 160, 0, 40)
  638. Santaobby.Font = Enum.Font.SourceSans
  639. Santaobby.Text = "SANTA'S GINGERBREAD OBBY"
  640. Santaobby.TextColor3 = Color3.new(0, 0, 0)
  641. Santaobby.TextScaled = true
  642. Santaobby.TextSize = 20
  643. Santaobby.TextStrokeTransparency = 0.5
  644. Santaobby.TextWrapped = true
  645. Santaobby.MouseButton1Click:Connect(function()
  646. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1178.28235, 58.1044922, -221.710098)
  647. end)
  648.  
  649. ObbyExit.Name = "ObbyExit"
  650. ObbyExit.Parent = ObbyFrame
  651. ObbyExit.BackgroundColor3 = Color3.new(1, 1, 1)
  652. ObbyExit.BackgroundTransparency = 1
  653. ObbyExit.Position = UDim2.new(0.949207485, 0, -0.00337959733, 0)
  654. ObbyExit.Size = UDim2.new(0, 18, 0, 21)
  655. ObbyExit.Font = Enum.Font.SourceSans
  656. ObbyExit.Text = "X"
  657. ObbyExit.TextColor3 = Color3.new(1, 0, 0)
  658. ObbyExit.TextScaled = true
  659. ObbyExit.TextSize = 14
  660. ObbyExit.TextStrokeTransparency = 0
  661. ObbyExit.TextWrapped = true
  662. ObbyExit.MouseButton1Click:Connect(function()
  663. ObbyFrame.Visible = false
  664. end)
  665. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement