Advertisement
Stevano

L2BGE

Jun 14th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 78.09 KB | None | 0 0
  1. Client = game.ReplicatedStorage.Interaction.ClientSetListPlayer
  2. players = game.Players
  3. for i, v in pairs(players:GetPlayers()) do
  4. if v.Name ~= players.LocalPlayer.Name then
  5. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, v, true)
  6. end
  7. end
  8. players.PlayerAdded:connect(function(plr)
  9. Client:InvokeServer(players.LocalPlayer.BlacklistFolder, plr, true)
  10. end)
  11.  
  12. -- Objects
  13.  
  14. local Stevano = Instance.new("ScreenGui")
  15. local OpenBtn = Instance.new("TextButton")
  16. local Drag = Instance.new("Frame")
  17. local AAPressQ = Instance.new("TextLabel")
  18. local AnimWelcomeScreen = Instance.new("Frame")
  19. local ImageLabel = Instance.new("ImageLabel")
  20. local Main = Instance.new("Frame")
  21. local HomeLocal = Instance.new("TextButton")
  22. local HomeTopBar = Instance.new("TextButton")
  23. local HomePlayers = Instance.new("TextButton")
  24. local HomeTeleports = Instance.new("TextButton")
  25. local HomeWood = Instance.new("TextButton")
  26. local HomeTools = Instance.new("TextButton")
  27. local HomeChangelog = Instance.new("TextButton")
  28. local HomeLogo = Instance.new("ImageLabel")
  29. local HiName = Instance.new("TextLabel")
  30. local HomeSepBar = Instance.new("TextButton")
  31. local X = Instance.new("TextButton")
  32. local WoodScreen = Instance.new("Frame")
  33. local TeleportCutWood = Instance.new("TextButton")
  34. local SellCutWood = Instance.new("TextButton")
  35. local TeleportEndTimesWood = Instance.new("TextButton")
  36. local TeleportCaveCrawlerWood = Instance.new("TextButton")
  37. local TeleportGifts = Instance.new("TextButton")
  38. local ToolsScreen = Instance.new("Frame")
  39. local Dupe = Instance.new("TextButton")
  40. local Move = Instance.new("TextButton")
  41. local GoldAxe = Instance.new("TextButton")
  42. local LeakedItems = Instance.new("TextButton")
  43. local TeleportTool = Instance.new("TextButton")
  44. local GreyWood = Instance.new("TextButton")
  45. local DupeLabel = Instance.new("TextLabel")
  46. local TeleportsScreen = Instance.new("Frame")
  47. local Spawn = Instance.new("TextButton")
  48. local Den = Instance.new("TextButton")
  49. local StrangeMan = Instance.new("TextButton")
  50. local Swamp = Instance.new("TextButton")
  51. local Fancy = Instance.new("TextButton")
  52. local BoxedCars = Instance.new("TextButton")
  53. local Dropoff = Instance.new("TextButton")
  54. local GreenBox = Instance.new("TextButton")
  55. local Cave = Instance.new("TextButton")
  56. local Palm = Instance.new("TextButton")
  57. local WoodRUs = Instance.new("TextButton")
  58. local LinksLogic = Instance.new("TextButton")
  59. local YourPlot = Instance.new("TextButton")
  60. local BobsShack = Instance.new("TextButton")
  61. local EndTimes = Instance.new("TextButton")
  62. local Volcano = Instance.new("TextButton")
  63. local Lodge = Instance.new("TextButton")
  64. local Shrine = Instance.new("TextButton")
  65. local PlayersScreen = Instance.new("Frame")
  66. local P1 = Instance.new("TextButton")
  67. local P2 = Instance.new("TextButton")
  68. local P4 = Instance.new("TextButton")
  69. local P3 = Instance.new("TextButton")
  70. local P6 = Instance.new("TextButton")
  71. local P5 = Instance.new("TextButton")
  72. local TpToPlayer = Instance.new("TextButton")
  73. local TpToPlayerBase = Instance.new("TextButton")
  74. local PSelected = Instance.new("TextLabel")
  75. local LocalScreen = Instance.new("Frame")
  76. local God = Instance.new("TextButton")
  77. local Noclip = Instance.new("TextButton")
  78. local Walkspeed = Instance.new("TextButton")
  79. local Jumppower = Instance.new("TextButton")
  80. local NoclipLabel = Instance.new("TextLabel")
  81. local WalkspeedValue = Instance.new("TextBox")
  82. local JumppowerValue = Instance.new("TextBox")
  83. local EtoFly = Instance.new("TextLabel")
  84. local HomeScreen = Instance.new("Frame")
  85. local WelcomeName = Instance.new("TextLabel")
  86. local WelcomeMOTD = Instance.new("TextLabel")
  87. local WelcomeAuthor = Instance.new("TextLabel")
  88. local ChangelogScreen = Instance.new("Frame")
  89. local Logs = Instance.new("TextLabel")
  90. local Logs2 = Instance.new("TextLabel")
  91. local Logs3 = Instance.new("TextLabel")
  92. local Log1and2Div = Instance.new("TextButton")
  93. local Log2and3Div = Instance.new("TextButton")
  94.  
  95. -- Properties
  96.  
  97. Stevano.Name = "Stevano"
  98. Stevano.Parent = game.CoreGui
  99. Stevano.ResetOnSpawn = false
  100.  
  101. OpenBtn.Name = "OpenBtn"
  102. OpenBtn.Parent = Stevano
  103. OpenBtn.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  104. OpenBtn.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  105. OpenBtn.BorderSizePixel = 3
  106. OpenBtn.Position = UDim2.new(0, 0, 0.826086938, 0)
  107. OpenBtn.Size = UDim2.new(0, 79, 0, 23)
  108. OpenBtn.Visible = false
  109. OpenBtn.Font = Enum.Font.SourceSans
  110. OpenBtn.Text = "Open"
  111. OpenBtn.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  112. OpenBtn.TextSize = 14
  113. OpenBtn.TextWrapped = true
  114.  
  115. Drag.Name = "Drag"
  116. Drag.Parent = Stevano
  117. Drag.Active = true
  118. Drag.BackgroundColor3 = Color3.new(1, 1, 1)
  119. Drag.BackgroundTransparency = 1
  120. Drag.BorderSizePixel = 0
  121. Drag.Draggable = true
  122. Drag.Position = UDim2.new(0.373752683, 0, 0.267786592, 0)
  123. Drag.Selectable = true
  124. Drag.Size = UDim2.new(0, 451, 0, 234)
  125.  
  126. AAPressQ.Name = "AAPressQ"
  127. AAPressQ.Parent = Stevano
  128. AAPressQ.BackgroundColor3 = Color3.new(1, 1, 1)
  129. AAPressQ.BackgroundTransparency = 1
  130. AAPressQ.BorderSizePixel = 0
  131. AAPressQ.Position = UDim2.new(0.283759117, 0, 0.252964437, 0)
  132. AAPressQ.Size = UDim2.new(0, 573, 0, 257)
  133. AAPressQ.Font = Enum.Font.SourceSans
  134. AAPressQ.Text = "Press \"Q\""
  135. AAPressQ.TextSize = 100
  136.  
  137. AnimWelcomeScreen.Name = "AnimWelcomeScreen"
  138. AnimWelcomeScreen.Parent = Drag
  139. AnimWelcomeScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  140. AnimWelcomeScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  141. AnimWelcomeScreen.BorderSizePixel = 3
  142. AnimWelcomeScreen.Position = UDim2.new(0.328511298, 0, -0.20692715, 0)
  143. AnimWelcomeScreen.Size = UDim2.new(0, 209, 0, 199)
  144. AnimWelcomeScreen.Visible = false
  145.  
  146. ImageLabel.Parent = AnimWelcomeScreen
  147. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  148. ImageLabel.BackgroundTransparency = 1
  149. ImageLabel.BorderSizePixel = 0
  150. ImageLabel.Size = UDim2.new(0, 209, 0, 199)
  151. ImageLabel.Image = "rbxassetid://1393851029"
  152.  
  153. Main.Name = "Main"
  154. Main.Parent = Drag
  155. Main.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  156. Main.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  157. Main.BorderSizePixel = 3
  158. Main.Position = UDim2.new(-0.00221729279, 0, 0.0128205121, 0)
  159. Main.Size = UDim2.new(0, 450, 0, 232)
  160. Main.Visible = false
  161.  
  162. HomeLocal.Name = "HomeLocal"
  163. HomeLocal.Parent = Main
  164. HomeLocal.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  165. HomeLocal.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  166. HomeLocal.BorderSizePixel = 2
  167. HomeLocal.Position = UDim2.new(0.0244444441, 0, 0.206896558, 0)
  168. HomeLocal.Size = UDim2.new(0, 84, 0, 21)
  169. HomeLocal.Font = Enum.Font.SourceSans
  170. HomeLocal.Text = "Local"
  171. HomeLocal.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  172. HomeLocal.TextSize = 24
  173. HomeLocal.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  174.  
  175. HomeTopBar.Name = "HomeTopBar"
  176. HomeTopBar.Parent = Main
  177. HomeTopBar.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  178. HomeTopBar.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  179. HomeTopBar.Position = UDim2.new(0, 0, 0.159482777, 0)
  180. HomeTopBar.Size = UDim2.new(0, 450, 0, 1)
  181. HomeTopBar.Font = Enum.Font.SourceSans
  182. HomeTopBar.Text = ""
  183. HomeTopBar.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  184. HomeTopBar.TextSize = 24
  185. HomeTopBar.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  186.  
  187. HomePlayers.Name = "HomePlayers"
  188. HomePlayers.Parent = Main
  189. HomePlayers.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  190. HomePlayers.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  191. HomePlayers.BorderSizePixel = 2
  192. HomePlayers.Position = UDim2.new(0.0244444441, 0, 0.331896544, 0)
  193. HomePlayers.Size = UDim2.new(0, 84, 0, 21)
  194. HomePlayers.Font = Enum.Font.SourceSans
  195. HomePlayers.Text = "Players"
  196. HomePlayers.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  197. HomePlayers.TextSize = 24
  198. HomePlayers.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  199.  
  200. HomeTeleports.Name = "HomeTeleports"
  201. HomeTeleports.Parent = Main
  202. HomeTeleports.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  203. HomeTeleports.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  204. HomeTeleports.BorderSizePixel = 2
  205. HomeTeleports.Position = UDim2.new(0.0244444441, 0, 0.459051698, 0)
  206. HomeTeleports.Size = UDim2.new(0, 84, 0, 21)
  207. HomeTeleports.Font = Enum.Font.SourceSans
  208. HomeTeleports.Text = "Teleports"
  209. HomeTeleports.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  210. HomeTeleports.TextSize = 24
  211. HomeTeleports.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  212.  
  213. HomeWood.Name = "HomeWood"
  214. HomeWood.Parent = Main
  215. HomeWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  216. HomeWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  217. HomeWood.BorderSizePixel = 2
  218. HomeWood.Position = UDim2.new(0.0244444441, 0, 0.594827592, 0)
  219. HomeWood.Size = UDim2.new(0, 84, 0, 21)
  220. HomeWood.Font = Enum.Font.SourceSans
  221. HomeWood.Text = "Wood"
  222. HomeWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  223. HomeWood.TextSize = 24
  224. HomeWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  225.  
  226. HomeTools.Name = "HomeTools"
  227. HomeTools.Parent = Main
  228. HomeTools.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  229. HomeTools.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  230. HomeTools.BorderSizePixel = 2
  231. HomeTools.Position = UDim2.new(0.0244444441, 0, 0.732758641, 0)
  232. HomeTools.Size = UDim2.new(0, 84, 0, 21)
  233. HomeTools.Font = Enum.Font.SourceSans
  234. HomeTools.Text = "Tools"
  235. HomeTools.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  236. HomeTools.TextSize = 24
  237. HomeTools.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  238.  
  239. HomeChangelog.Name = "HomeChangelog"
  240. HomeChangelog.Parent = Main
  241. HomeChangelog.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  242. HomeChangelog.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  243. HomeChangelog.BorderSizePixel = 2
  244. HomeChangelog.Position = UDim2.new(0.0244444441, 0, 0.875, 0)
  245. HomeChangelog.Size = UDim2.new(0, 84, 0, 21)
  246. HomeChangelog.Font = Enum.Font.SourceSans
  247. HomeChangelog.Text = "Changelog"
  248. HomeChangelog.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  249. HomeChangelog.TextSize = 22
  250. HomeChangelog.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  251.  
  252. HomeLogo.Name = "HomeLogo"
  253. HomeLogo.Parent = Main
  254. HomeLogo.BackgroundColor3 = Color3.new(1, 1, 1)
  255. HomeLogo.BackgroundTransparency = 1
  256. HomeLogo.BorderSizePixel = 0
  257. HomeLogo.Position = UDim2.new(0.456999987, 0, -0.11896389, 0)
  258. HomeLogo.Size = UDim2.new(0, 156, 0, 99)
  259. HomeLogo.Image = "rbxassetid://1393851029"
  260.  
  261. HiName.Name = "HiName"
  262. HiName.Parent = Main
  263. HiName.BackgroundColor3 = Color3.new(1, 1, 1)
  264. HiName.BackgroundTransparency = 1
  265. HiName.BorderSizePixel = 0
  266. HiName.Position = UDim2.new(0.0244444441, 0, 0.0258620698, 0)
  267. HiName.Size = UDim2.new(0, 189, 0, 25)
  268. HiName.Font = Enum.Font.SourceSans
  269. HiName.Text = "Hi"
  270. HiName.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  271. HiName.TextScaled = true
  272. HiName.TextSize = 14
  273. HiName.TextStrokeColor3 = Color3.new(0.000153787, 0.000246059, 0.000322953)
  274. HiName.TextStrokeTransparency = 0.64899998903275
  275. HiName.TextWrapped = true
  276. HiName.TextXAlignment = Enum.TextXAlignment.Left
  277.  
  278. HomeSepBar.Name = "HomeSepBar"
  279. HomeSepBar.Parent = Main
  280. HomeSepBar.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  281. HomeSepBar.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  282. HomeSepBar.Position = UDim2.new(0.24888888, 0, 0.206896558, 0)
  283. HomeSepBar.Size = UDim2.new(0, 1, 0, 176)
  284. HomeSepBar.Font = Enum.Font.SourceSans
  285. HomeSepBar.Text = ""
  286. HomeSepBar.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  287. HomeSepBar.TextSize = 24
  288. HomeSepBar.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  289.  
  290. X.Name = "X"
  291. X.Parent = Main
  292. X.BackgroundColor3 = Color3.new(1, 1, 1)
  293. X.BackgroundTransparency = 1
  294. X.BorderSizePixel = 0
  295. X.Position = UDim2.new(0.937777758, 0, 0, 0)
  296. X.Size = UDim2.new(0, 28, 0, 25)
  297. X.Font = Enum.Font.SourceSans
  298. X.Text = "X"
  299. X.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  300. X.TextScaled = true
  301. X.TextSize = 14
  302. X.TextWrapped = true
  303.  
  304. WoodScreen.Name = "WoodScreen"
  305. WoodScreen.Parent = Drag
  306. WoodScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  307. WoodScreen.BackgroundTransparency = 1
  308. WoodScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  309. WoodScreen.BorderSizePixel = 0
  310. WoodScreen.Draggable = true
  311. WoodScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  312. WoodScreen.Size = UDim2.new(0, 444, 0, 230)
  313. WoodScreen.Visible = false
  314.  
  315. TeleportCutWood.Name = "Teleport Cut Wood"
  316. TeleportCutWood.Parent = WoodScreen
  317. TeleportCutWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  318. TeleportCutWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  319. TeleportCutWood.BorderSizePixel = 2
  320. TeleportCutWood.Position = UDim2.new(0.457207203, 0, 0.226086959, 0)
  321. TeleportCutWood.Size = UDim2.new(0, 147, 0, 21)
  322. TeleportCutWood.Font = Enum.Font.SourceSans
  323. TeleportCutWood.Text = "Teleport Cut Wood"
  324. TeleportCutWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  325. TeleportCutWood.TextScaled = true
  326. TeleportCutWood.TextSize = 24
  327. TeleportCutWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  328. TeleportCutWood.TextWrapped = true
  329.  
  330. SellCutWood.Name = "Sell Cut Wood"
  331. SellCutWood.Parent = WoodScreen
  332. SellCutWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  333. SellCutWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  334. SellCutWood.BorderSizePixel = 2
  335. SellCutWood.Position = UDim2.new(0.457207203, 0, 0.391304344, 0)
  336. SellCutWood.Size = UDim2.new(0, 147, 0, 21)
  337. SellCutWood.Font = Enum.Font.SourceSans
  338. SellCutWood.Text = "Sell Cut Wood"
  339. SellCutWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  340. SellCutWood.TextSize = 24
  341. SellCutWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  342.  
  343. TeleportEndTimesWood.Name = "Teleport End Times Wood"
  344. TeleportEndTimesWood.Parent = WoodScreen
  345. TeleportEndTimesWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  346. TeleportEndTimesWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  347. TeleportEndTimesWood.BorderSizePixel = 2
  348. TeleportEndTimesWood.Position = UDim2.new(0.457207203, 0, 0.556521714, 0)
  349. TeleportEndTimesWood.Size = UDim2.new(0, 147, 0, 21)
  350. TeleportEndTimesWood.Font = Enum.Font.SourceSans
  351. TeleportEndTimesWood.Text = "Teleport End Times"
  352. TeleportEndTimesWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  353. TeleportEndTimesWood.TextScaled = true
  354. TeleportEndTimesWood.TextSize = 24
  355. TeleportEndTimesWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  356. TeleportEndTimesWood.TextWrapped = true
  357.  
  358. TeleportCaveCrawlerWood.Name = "Teleport Cave Crawler Wood"
  359. TeleportCaveCrawlerWood.Parent = WoodScreen
  360. TeleportCaveCrawlerWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  361. TeleportCaveCrawlerWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  362. TeleportCaveCrawlerWood.BorderSizePixel = 2
  363. TeleportCaveCrawlerWood.Position = UDim2.new(0.457207203, 0, 0.70869565, 0)
  364. TeleportCaveCrawlerWood.Size = UDim2.new(0, 147, 0, 21)
  365. TeleportCaveCrawlerWood.Font = Enum.Font.SourceSans
  366. TeleportCaveCrawlerWood.Text = "Teleport Cave Crawler"
  367. TeleportCaveCrawlerWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  368. TeleportCaveCrawlerWood.TextScaled = true
  369. TeleportCaveCrawlerWood.TextSize = 24
  370. TeleportCaveCrawlerWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  371. TeleportCaveCrawlerWood.TextWrapped = true
  372.  
  373. TeleportGifts.Name = "Teleport Gifts"
  374. TeleportGifts.Parent = WoodScreen
  375. TeleportGifts.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  376. TeleportGifts.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  377. TeleportGifts.BorderSizePixel = 2
  378. TeleportGifts.Position = UDim2.new(0.456081063, 0, 0.869565248, 0)
  379. TeleportGifts.Size = UDim2.new(0, 147, 0, 21)
  380. TeleportGifts.Font = Enum.Font.SourceSans
  381. TeleportGifts.Text = "Teleport Gifts"
  382. TeleportGifts.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  383. TeleportGifts.TextScaled = true
  384. TeleportGifts.TextSize = 24
  385. TeleportGifts.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  386. TeleportGifts.TextWrapped = true
  387.  
  388. ToolsScreen.Name = "ToolsScreen"
  389. ToolsScreen.Parent = Drag
  390. ToolsScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  391. ToolsScreen.BackgroundTransparency = 1
  392. ToolsScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  393. ToolsScreen.BorderSizePixel = 0
  394. ToolsScreen.Draggable = true
  395. ToolsScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  396. ToolsScreen.Size = UDim2.new(0, 444, 0, 230)
  397. ToolsScreen.Visible = false
  398.  
  399. Dupe.Name = "Dupe"
  400. Dupe.Parent = ToolsScreen
  401. Dupe.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  402. Dupe.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  403. Dupe.BorderSizePixel = 2
  404. Dupe.Position = UDim2.new(0.457207203, 0, 0.199999988, 0)
  405. Dupe.Size = UDim2.new(0, 147, 0, 20)
  406. Dupe.Font = Enum.Font.SourceSans
  407. Dupe.Text = "Duplication"
  408. Dupe.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  409. Dupe.TextScaled = true
  410. Dupe.TextSize = 24
  411. Dupe.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  412. Dupe.TextWrapped = true
  413.  
  414. Move.Name = "Move"
  415. Move.Parent = ToolsScreen
  416. Move.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  417. Move.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  418. Move.BorderSizePixel = 2
  419. Move.Position = UDim2.new(0.457207203, 0, 0.347826093, 0)
  420. Move.Size = UDim2.new(0, 147, 0, 20)
  421. Move.Font = Enum.Font.SourceSans
  422. Move.Text = "Hard Dragger"
  423. Move.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  424. Move.TextScaled = true
  425. Move.TextSize = 24
  426. Move.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  427. Move.TextWrapped = true
  428.  
  429. GoldAxe.Name = "Gold Axe"
  430. GoldAxe.Parent = ToolsScreen
  431. GoldAxe.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  432. GoldAxe.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  433. GoldAxe.BorderSizePixel = 2
  434. GoldAxe.Position = UDim2.new(0.457207233, 0, 0.478260875, 0)
  435. GoldAxe.Size = UDim2.new(0, 147, 0, 20)
  436. GoldAxe.Font = Enum.Font.SourceSans
  437. GoldAxe.Text = "Golden Axe"
  438. GoldAxe.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  439. GoldAxe.TextScaled = true
  440. GoldAxe.TextSize = 24
  441. GoldAxe.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  442. GoldAxe.TextWrapped = true
  443.  
  444. LeakedItems.Name = "Leaked Items"
  445. LeakedItems.Parent = ToolsScreen
  446. LeakedItems.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  447. LeakedItems.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  448. LeakedItems.BorderSizePixel = 2
  449. LeakedItems.Position = UDim2.new(0.456081092, 0, 0.617391288, 0)
  450. LeakedItems.Size = UDim2.new(0, 147, 0, 20)
  451. LeakedItems.Font = Enum.Font.SourceSans
  452. LeakedItems.Text = "TP Wood for Dupe"
  453. LeakedItems.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  454. LeakedItems.TextScaled = true
  455. LeakedItems.TextSize = 24
  456. LeakedItems.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  457. LeakedItems.TextWrapped = true
  458.  
  459. TeleportTool.Name = "Teleport Tool"
  460. TeleportTool.Parent = ToolsScreen
  461. TeleportTool.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  462. TeleportTool.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  463. TeleportTool.BorderSizePixel = 2
  464. TeleportTool.Position = UDim2.new(0.456081092, 0, 0.756521761, 0)
  465. TeleportTool.Size = UDim2.new(0, 147, 0, 20)
  466. TeleportTool.Font = Enum.Font.SourceSans
  467. TeleportTool.Text = "Ctrl + Click TP"
  468. TeleportTool.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  469. TeleportTool.TextScaled = true
  470. TeleportTool.TextSize = 24
  471. TeleportTool.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  472. TeleportTool.TextWrapped = true
  473.  
  474. GreyWood.Name = "Grey Wood"
  475. GreyWood.Parent = ToolsScreen
  476. GreyWood.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  477. GreyWood.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  478. GreyWood.BorderSizePixel = 2
  479. GreyWood.Position = UDim2.new(0.456081092, 0, 0.900000036, 0)
  480. GreyWood.Size = UDim2.new(0, 147, 0, 20)
  481. GreyWood.Font = Enum.Font.SourceSans
  482. GreyWood.Text = "Grey Wood"
  483. GreyWood.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  484. GreyWood.TextScaled = true
  485. GreyWood.TextSize = 24
  486. GreyWood.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  487. GreyWood.TextWrapped = true
  488.  
  489. DupeLabel.Name = "DupeLabel"
  490. DupeLabel.Parent = ToolsScreen
  491. DupeLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  492. DupeLabel.BackgroundTransparency = 1
  493. DupeLabel.BorderColor3 = Color3.new(0.666667, 0, 0)
  494. DupeLabel.BorderSizePixel = 0
  495. DupeLabel.Position = UDim2.new(0.493243247, 0, 0.286956519, 0)
  496. DupeLabel.Size = UDim2.new(0, 115, 0, 14)
  497. DupeLabel.Font = Enum.Font.SciFi
  498. DupeLabel.Text = "Disabled"
  499. DupeLabel.TextColor3 = Color3.new(0.666667, 0, 0)
  500. DupeLabel.TextSize = 14
  501.  
  502. TeleportsScreen.Name = "TeleportsScreen"
  503. TeleportsScreen.Parent = Drag
  504. TeleportsScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  505. TeleportsScreen.BackgroundTransparency = 1
  506. TeleportsScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  507. TeleportsScreen.BorderSizePixel = 0
  508. TeleportsScreen.Draggable = true
  509. TeleportsScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  510. TeleportsScreen.Size = UDim2.new(0, 444, 0, 230)
  511. TeleportsScreen.Visible = false
  512.  
  513. Spawn.Name = "Spawn"
  514. Spawn.Parent = TeleportsScreen
  515. Spawn.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  516. Spawn.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  517. Spawn.BorderSizePixel = 2
  518. Spawn.Position = UDim2.new(0.290540546, 0, 0.226086959, 0)
  519. Spawn.Size = UDim2.new(0, 84, 0, 21)
  520. Spawn.Font = Enum.Font.SourceSans
  521. Spawn.Text = "Spawn"
  522. Spawn.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  523. Spawn.TextSize = 24
  524. Spawn.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  525. Spawn.TextWrapped = true
  526.  
  527. Den.Name = "Den"
  528. Den.Parent = TeleportsScreen
  529. Den.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  530. Den.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  531. Den.BorderSizePixel = 2
  532. Den.Position = UDim2.new(0.290540546, 0, 0.352173924, 0)
  533. Den.Size = UDim2.new(0, 84, 0, 21)
  534. Den.Font = Enum.Font.SourceSans
  535. Den.Text = "The Den"
  536. Den.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  537. Den.TextSize = 24
  538. Den.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  539. Den.TextWrapped = true
  540.  
  541. StrangeMan.Name = "Strange Man"
  542. StrangeMan.Parent = TeleportsScreen
  543. StrangeMan.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  544. StrangeMan.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  545. StrangeMan.BorderSizePixel = 2
  546. StrangeMan.Position = UDim2.new(0.290540546, 0, 0.482608676, 0)
  547. StrangeMan.Size = UDim2.new(0, 84, 0, 21)
  548. StrangeMan.Font = Enum.Font.SourceSans
  549. StrangeMan.Text = "Strange Man"
  550. StrangeMan.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  551. StrangeMan.TextScaled = true
  552. StrangeMan.TextSize = 24
  553. StrangeMan.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  554. StrangeMan.TextWrapped = true
  555.  
  556. Swamp.Name = "Swamp"
  557. Swamp.Parent = TeleportsScreen
  558. Swamp.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  559. Swamp.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  560. Swamp.BorderSizePixel = 2
  561. Swamp.Position = UDim2.new(0.290540546, 0, 0.617391288, 0)
  562. Swamp.Size = UDim2.new(0, 84, 0, 21)
  563. Swamp.Font = Enum.Font.SourceSans
  564. Swamp.Text = "Swamp"
  565. Swamp.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  566. Swamp.TextSize = 24
  567. Swamp.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  568. Swamp.TextWrapped = true
  569.  
  570. Fancy.Name = "Fancy"
  571. Fancy.Parent = TeleportsScreen
  572. Fancy.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  573. Fancy.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  574. Fancy.BorderSizePixel = 2
  575. Fancy.Position = UDim2.new(0.290540546, 0, 0.747826099, 0)
  576. Fancy.Size = UDim2.new(0, 84, 0, 21)
  577. Fancy.Font = Enum.Font.SourceSans
  578. Fancy.Text = "Fancy"
  579. Fancy.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  580. Fancy.TextSize = 24
  581. Fancy.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  582. Fancy.TextWrapped = true
  583.  
  584. BoxedCars.Name = "Boxed Cars"
  585. BoxedCars.Parent = TeleportsScreen
  586. BoxedCars.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  587. BoxedCars.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  588. BoxedCars.BorderSizePixel = 2
  589. BoxedCars.Position = UDim2.new(0.290540546, 0, 0.87391305, 0)
  590. BoxedCars.Size = UDim2.new(0, 84, 0, 21)
  591. BoxedCars.Font = Enum.Font.SourceSans
  592. BoxedCars.Text = "Boxed Cars"
  593. BoxedCars.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  594. BoxedCars.TextScaled = true
  595. BoxedCars.TextSize = 24
  596. BoxedCars.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  597. BoxedCars.TextWrapped = true
  598.  
  599. Dropoff.Name = "Dropoff"
  600. Dropoff.Parent = TeleportsScreen
  601. Dropoff.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  602. Dropoff.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  603. Dropoff.BorderSizePixel = 2
  604. Dropoff.Position = UDim2.new(0.538288295, 0, 0.226086959, 0)
  605. Dropoff.Size = UDim2.new(0, 84, 0, 21)
  606. Dropoff.Font = Enum.Font.SourceSans
  607. Dropoff.Text = "Dropoff"
  608. Dropoff.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  609. Dropoff.TextSize = 24
  610. Dropoff.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  611. Dropoff.TextWrapped = true
  612.  
  613. GreenBox.Name = "Green Box"
  614. GreenBox.Parent = TeleportsScreen
  615. GreenBox.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  616. GreenBox.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  617. GreenBox.BorderSizePixel = 2
  618. GreenBox.Position = UDim2.new(0.538288295, 0, 0.352173924, 0)
  619. GreenBox.Size = UDim2.new(0, 84, 0, 21)
  620. GreenBox.Font = Enum.Font.SourceSans
  621. GreenBox.Text = "Green Box"
  622. GreenBox.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  623. GreenBox.TextScaled = true
  624. GreenBox.TextSize = 24
  625. GreenBox.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  626. GreenBox.TextWrapped = true
  627.  
  628. Cave.Name = "Cave"
  629. Cave.Parent = TeleportsScreen
  630. Cave.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  631. Cave.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  632. Cave.BorderSizePixel = 2
  633. Cave.Position = UDim2.new(0.538288295, 0, 0.482608676, 0)
  634. Cave.Size = UDim2.new(0, 84, 0, 21)
  635. Cave.Font = Enum.Font.SourceSans
  636. Cave.Text = "Cave"
  637. Cave.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  638. Cave.TextSize = 24
  639. Cave.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  640. Cave.TextWrapped = true
  641.  
  642. Palm.Name = "Palm"
  643. Palm.Parent = TeleportsScreen
  644. Palm.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  645. Palm.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  646. Palm.BorderSizePixel = 2
  647. Palm.Position = UDim2.new(0.538288295, 0, 0.617391288, 0)
  648. Palm.Size = UDim2.new(0, 84, 0, 21)
  649. Palm.Font = Enum.Font.SourceSans
  650. Palm.Text = "Palm"
  651. Palm.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  652. Palm.TextSize = 24
  653. Palm.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  654. Palm.TextWrapped = true
  655.  
  656. WoodRUs.Name = "Wood R Us"
  657. WoodRUs.Parent = TeleportsScreen
  658. WoodRUs.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  659. WoodRUs.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  660. WoodRUs.BorderSizePixel = 2
  661. WoodRUs.Position = UDim2.new(0.538288295, 0, 0.747826099, 0)
  662. WoodRUs.Size = UDim2.new(0, 84, 0, 21)
  663. WoodRUs.Font = Enum.Font.SourceSans
  664. WoodRUs.Text = "Wood R Us"
  665. WoodRUs.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  666. WoodRUs.TextScaled = true
  667. WoodRUs.TextSize = 24
  668. WoodRUs.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  669. WoodRUs.TextWrapped = true
  670.  
  671. LinksLogic.Name = "Links Logic"
  672. LinksLogic.Parent = TeleportsScreen
  673. LinksLogic.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  674. LinksLogic.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  675. LinksLogic.BorderSizePixel = 2
  676. LinksLogic.Position = UDim2.new(0.538288295, 0, 0.87391305, 0)
  677. LinksLogic.Size = UDim2.new(0, 84, 0, 21)
  678. LinksLogic.Font = Enum.Font.SourceSans
  679. LinksLogic.Text = "Link's Logic"
  680. LinksLogic.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  681. LinksLogic.TextScaled = true
  682. LinksLogic.TextSize = 24
  683. LinksLogic.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  684. LinksLogic.TextWrapped = true
  685.  
  686. YourPlot.Name = "Your Plot"
  687. YourPlot.Parent = TeleportsScreen
  688. YourPlot.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  689. YourPlot.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  690. YourPlot.BorderSizePixel = 2
  691. YourPlot.Position = UDim2.new(0.77477479, 0, 0.87391305, 0)
  692. YourPlot.Size = UDim2.new(0, 84, 0, 21)
  693. YourPlot.Font = Enum.Font.SourceSans
  694. YourPlot.Text = "Your Plot"
  695. YourPlot.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  696. YourPlot.TextSize = 24
  697. YourPlot.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  698. YourPlot.TextWrapped = true
  699.  
  700. BobsShack.Name = "Bobs Shack"
  701. BobsShack.Parent = TeleportsScreen
  702. BobsShack.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  703. BobsShack.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  704. BobsShack.BorderSizePixel = 2
  705. BobsShack.Position = UDim2.new(0.77477479, 0, 0.747826099, 0)
  706. BobsShack.Size = UDim2.new(0, 84, 0, 21)
  707. BobsShack.Font = Enum.Font.SourceSans
  708. BobsShack.Text = "Bob's Shack"
  709. BobsShack.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  710. BobsShack.TextScaled = true
  711. BobsShack.TextSize = 24
  712. BobsShack.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  713. BobsShack.TextWrapped = true
  714.  
  715. EndTimes.Name = "End Times"
  716. EndTimes.Parent = TeleportsScreen
  717. EndTimes.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  718. EndTimes.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  719. EndTimes.BorderSizePixel = 2
  720. EndTimes.Position = UDim2.new(0.77477479, 0, 0.617391288, 0)
  721. EndTimes.Size = UDim2.new(0, 84, 0, 21)
  722. EndTimes.Font = Enum.Font.SourceSans
  723. EndTimes.Text = "End Times"
  724. EndTimes.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  725. EndTimes.TextScaled = true
  726. EndTimes.TextSize = 24
  727. EndTimes.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  728. EndTimes.TextWrapped = true
  729.  
  730. Volcano.Name = "Volcano"
  731. Volcano.Parent = TeleportsScreen
  732. Volcano.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  733. Volcano.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  734. Volcano.BorderSizePixel = 2
  735. Volcano.Position = UDim2.new(0.77477479, 0, 0.482608676, 0)
  736. Volcano.Size = UDim2.new(0, 84, 0, 21)
  737. Volcano.Font = Enum.Font.SourceSans
  738. Volcano.Text = "Volcano"
  739. Volcano.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  740. Volcano.TextSize = 24
  741. Volcano.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  742. Volcano.TextWrapped = true
  743.  
  744. Lodge.Name = "Lodge"
  745. Lodge.Parent = TeleportsScreen
  746. Lodge.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  747. Lodge.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  748. Lodge.BorderSizePixel = 2
  749. Lodge.Position = UDim2.new(0.77477479, 0, 0.352173924, 0)
  750. Lodge.Size = UDim2.new(0, 84, 0, 21)
  751. Lodge.Font = Enum.Font.SourceSans
  752. Lodge.Text = "Lodge"
  753. Lodge.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  754. Lodge.TextSize = 24
  755. Lodge.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  756. Lodge.TextWrapped = true
  757.  
  758. Shrine.Name = "Shrine"
  759. Shrine.Parent = TeleportsScreen
  760. Shrine.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  761. Shrine.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  762. Shrine.BorderSizePixel = 2
  763. Shrine.Position = UDim2.new(0.77477479, 0, 0.226086959, 0)
  764. Shrine.Size = UDim2.new(0, 84, 0, 21)
  765. Shrine.Font = Enum.Font.SourceSans
  766. Shrine.Text = "Shrine"
  767. Shrine.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  768. Shrine.TextSize = 24
  769. Shrine.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  770. Shrine.TextWrapped = true
  771.  
  772. PlayersScreen.Name = "PlayersScreen"
  773. PlayersScreen.Parent = Drag
  774. PlayersScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  775. PlayersScreen.BackgroundTransparency = 1
  776. PlayersScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  777. PlayersScreen.BorderSizePixel = 0
  778. PlayersScreen.Draggable = true
  779. PlayersScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  780. PlayersScreen.Size = UDim2.new(0, 444, 0, 230)
  781. PlayersScreen.Visible = false
  782.  
  783. P1.Name = "P1"
  784. P1.Parent = PlayersScreen
  785. P1.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  786. P1.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  787. P1.BorderSizePixel = 2
  788. P1.Position = UDim2.new(0.272522509, 0, 0.226086959, 0)
  789. P1.Size = UDim2.new(0, 147, 0, 21)
  790. P1.Font = Enum.Font.SourceSans
  791. P1.Text = " "
  792. P1.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  793. P1.TextSize = 24
  794. P1.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  795.  
  796. P2.Name = "P2"
  797. P2.Parent = PlayersScreen
  798. P2.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  799. P2.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  800. P2.BorderSizePixel = 2
  801. P2.Position = UDim2.new(0.628378332, 0, 0.226086974, 0)
  802. P2.Size = UDim2.new(0, 158, 0, 21)
  803. P2.Font = Enum.Font.SourceSans
  804. P2.Text = " "
  805. P2.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  806. P2.TextSize = 24
  807. P2.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  808.  
  809. P4.Name = "P4"
  810. P4.Parent = PlayersScreen
  811. P4.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  812. P4.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  813. P4.BorderSizePixel = 2
  814. P4.Position = UDim2.new(0.628378332, 0, 0.352173924, 0)
  815. P4.Size = UDim2.new(0, 158, 0, 21)
  816. P4.Font = Enum.Font.SourceSans
  817. P4.Text = " "
  818. P4.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  819. P4.TextSize = 24
  820. P4.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  821.  
  822. P3.Name = "P3"
  823. P3.Parent = PlayersScreen
  824. P3.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  825. P3.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  826. P3.BorderSizePixel = 2
  827. P3.Position = UDim2.new(0.272522509, 0, 0.352173924, 0)
  828. P3.Size = UDim2.new(0, 147, 0, 21)
  829. P3.Font = Enum.Font.SourceSans
  830. P3.Text = " "
  831. P3.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  832. P3.TextSize = 24
  833. P3.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  834.  
  835. P6.Name = "P6"
  836. P6.Parent = PlayersScreen
  837. P6.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  838. P6.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  839. P6.BorderSizePixel = 2
  840. P6.Position = UDim2.new(0.628378332, 0, 0.482608706, 0)
  841. P6.Size = UDim2.new(0, 158, 0, 21)
  842. P6.Font = Enum.Font.SourceSans
  843. P6.Text = ""
  844. P6.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  845. P6.TextSize = 24
  846. P6.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  847.  
  848. P5.Name = "P5"
  849. P5.Parent = PlayersScreen
  850. P5.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  851. P5.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  852. P5.BorderSizePixel = 2
  853. P5.Position = UDim2.new(0.272522509, 0, 0.482608706, 0)
  854. P5.Size = UDim2.new(0, 147, 0, 21)
  855. P5.Font = Enum.Font.SourceSans
  856. P5.Text = " "
  857. P5.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  858. P5.TextSize = 24
  859. P5.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  860.  
  861. TpToPlayer.Name = "TpToPlayer"
  862. TpToPlayer.Parent = PlayersScreen
  863. TpToPlayer.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  864. TpToPlayer.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  865. TpToPlayer.BorderSizePixel = 2
  866. TpToPlayer.Position = UDim2.new(0.405405402, 0, 0.656521738, 0)
  867. TpToPlayer.Size = UDim2.new(0, 179, 0, 21)
  868. TpToPlayer.Font = Enum.Font.SourceSans
  869. TpToPlayer.Text = "Teleport To Player"
  870. TpToPlayer.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  871. TpToPlayer.TextSize = 24
  872. TpToPlayer.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  873.  
  874. TpToPlayerBase.Name = "TpToPlayerBase"
  875. TpToPlayerBase.Parent = PlayersScreen
  876. TpToPlayerBase.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  877. TpToPlayerBase.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  878. TpToPlayerBase.BorderSizePixel = 2
  879. TpToPlayerBase.Position = UDim2.new(0.405405402, 0, 0.813043475, 0)
  880. TpToPlayerBase.Size = UDim2.new(0, 179, 0, 21)
  881. TpToPlayerBase.Font = Enum.Font.SourceSans
  882. TpToPlayerBase.Text = "Teleport To Base"
  883. TpToPlayerBase.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  884. TpToPlayerBase.TextSize = 24
  885. TpToPlayerBase.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  886.  
  887. PSelected.Name = "PSelected"
  888. PSelected.Parent = PlayersScreen
  889. PSelected.BackgroundColor3 = Color3.new(1, 1, 1)
  890. PSelected.BackgroundTransparency = 1
  891. PSelected.BorderSizePixel = 0
  892. PSelected.Position = UDim2.new(0.405405402, 0, 0.904347837, 0)
  893. PSelected.Size = UDim2.new(0, 179, 0, 22)
  894. PSelected.Font = Enum.Font.SourceSans
  895. PSelected.Text = ""
  896. PSelected.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  897. PSelected.TextSize = 20
  898.  
  899. LocalScreen.Name = "LocalScreen"
  900. LocalScreen.Parent = Drag
  901. LocalScreen.BackgroundColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  902. LocalScreen.BackgroundTransparency = 1
  903. LocalScreen.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  904. LocalScreen.BorderSizePixel = 0
  905. LocalScreen.Draggable = true
  906. LocalScreen.Position = UDim2.new(0.0164813697, 0, -0.000777035952, 0)
  907. LocalScreen.Size = UDim2.new(0, 444, 0, 230)
  908. LocalScreen.Visible = false
  909.  
  910. God.Name = "God"
  911. God.Parent = LocalScreen
  912. God.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  913. God.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  914. God.BorderSizePixel = 2
  915. God.Position = UDim2.new(0.457207203, 0, 0.226086944, 0)
  916. God.Size = UDim2.new(0, 158, 0, 21)
  917. God.Font = Enum.Font.SourceSans
  918. God.Text = "God"
  919. God.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  920. God.TextSize = 24
  921. God.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  922.  
  923. Noclip.Name = "Noclip"
  924. Noclip.Parent = LocalScreen
  925. Noclip.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  926. Noclip.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  927. Noclip.BorderSizePixel = 2
  928. Noclip.Position = UDim2.new(0.457207203, 0, 0.352173924, 0)
  929. Noclip.Size = UDim2.new(0, 158, 0, 21)
  930. Noclip.Font = Enum.Font.SourceSans
  931. Noclip.Text = "Noclip"
  932. Noclip.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  933. Noclip.TextSize = 24
  934. Noclip.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  935.  
  936. Walkspeed.Name = "Walkspeed"
  937. Walkspeed.Parent = LocalScreen
  938. Walkspeed.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  939. Walkspeed.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  940. Walkspeed.BorderSizePixel = 2
  941. Walkspeed.Position = UDim2.new(0.457207203, 0, 0.523913026, 0)
  942. Walkspeed.Size = UDim2.new(0, 158, 0, 21)
  943. Walkspeed.Font = Enum.Font.SourceSans
  944. Walkspeed.Text = "Walkspeed"
  945. Walkspeed.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  946. Walkspeed.TextSize = 24
  947. Walkspeed.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  948.  
  949. Jumppower.Name = "Jumppower"
  950. Jumppower.Parent = LocalScreen
  951. Jumppower.BackgroundColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  952. Jumppower.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  953. Jumppower.BorderSizePixel = 2
  954. Jumppower.Position = UDim2.new(0.457207203, 0, 0.70869565, 0)
  955. Jumppower.Size = UDim2.new(0, 158, 0, 21)
  956. Jumppower.Font = Enum.Font.SourceSans
  957. Jumppower.Text = "Jumppower"
  958. Jumppower.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  959. Jumppower.TextSize = 24
  960. Jumppower.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  961.  
  962. NoclipLabel.Name = "NoclipLabel"
  963. NoclipLabel.Parent = LocalScreen
  964. NoclipLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  965. NoclipLabel.BackgroundTransparency = 1
  966. NoclipLabel.BorderColor3 = Color3.new(0.666667, 0, 0)
  967. NoclipLabel.BorderSizePixel = 0
  968. NoclipLabel.Position = UDim2.new(0.504504502, 0, 0.443478256, 0)
  969. NoclipLabel.Size = UDim2.new(0, 115, 0, 19)
  970. NoclipLabel.Font = Enum.Font.SciFi
  971. NoclipLabel.Text = "Disabled"
  972. NoclipLabel.TextColor3 = Color3.new(0.666667, 0, 0)
  973. NoclipLabel.TextSize = 14
  974.  
  975. WalkspeedValue.Name = "WalkspeedValue"
  976. WalkspeedValue.Parent = LocalScreen
  977. WalkspeedValue.BackgroundColor3 = Color3.new(1, 1, 1)
  978. WalkspeedValue.BackgroundTransparency = 1
  979. WalkspeedValue.BorderSizePixel = 0
  980. WalkspeedValue.Position = UDim2.new(0.457207203, 0, 0.617391288, 0)
  981. WalkspeedValue.Size = UDim2.new(0, 158, 0, 21)
  982. WalkspeedValue.Font = Enum.Font.SourceSans
  983. WalkspeedValue.Text = "Walkspeed Value"
  984. WalkspeedValue.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  985. WalkspeedValue.TextSize = 14
  986.  
  987. JumppowerValue.Name = "JumppowerValue"
  988. JumppowerValue.Parent = LocalScreen
  989. JumppowerValue.BackgroundColor3 = Color3.new(1, 1, 1)
  990. JumppowerValue.BackgroundTransparency = 1
  991. JumppowerValue.BorderSizePixel = 0
  992. JumppowerValue.Position = UDim2.new(0.457207203, 0, 0.799999952, 0)
  993. JumppowerValue.Size = UDim2.new(0, 158, 0, 21)
  994. JumppowerValue.Font = Enum.Font.SourceSans
  995. JumppowerValue.Text = "Jumppower Value"
  996. JumppowerValue.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  997. JumppowerValue.TextSize = 14
  998.  
  999. EtoFly.Name = "EtoFly"
  1000. EtoFly.Parent = LocalScreen
  1001. EtoFly.BackgroundColor3 = Color3.new(1, 1, 1)
  1002. EtoFly.BackgroundTransparency = 1
  1003. EtoFly.BorderSizePixel = 0
  1004. EtoFly.Position = UDim2.new(0.409909904, 0, 0.895652175, 0)
  1005. EtoFly.Size = UDim2.new(0, 200, 0, 29)
  1006. EtoFly.Font = Enum.Font.SourceSans
  1007. EtoFly.Text = "Press \"Q\" to Fly"
  1008. EtoFly.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1009. EtoFly.TextSize = 14
  1010.  
  1011. HomeScreen.Name = "HomeScreen"
  1012. HomeScreen.Parent = Drag
  1013. HomeScreen.BackgroundColor3 = Color3.new(1, 1, 1)
  1014. HomeScreen.BackgroundTransparency = 1
  1015. HomeScreen.BorderSizePixel = 0
  1016. HomeScreen.Position = UDim2.new(-0.208425716, 0, -0.273504287, 0)
  1017. HomeScreen.Size = UDim2.new(0, 450, 0, 232)
  1018. HomeScreen.Visible = false
  1019.  
  1020. WelcomeName.Name = "WelcomeName"
  1021. WelcomeName.Parent = HomeScreen
  1022. WelcomeName.BackgroundColor3 = Color3.new(1, 1, 1)
  1023. WelcomeName.BackgroundTransparency = 1
  1024. WelcomeName.BorderSizePixel = 0
  1025. WelcomeName.Position = UDim2.new(0.512882888, 0, 0.402361304, 0)
  1026. WelcomeName.Size = UDim2.new(0, 295, 0, 50)
  1027. WelcomeName.Font = Enum.Font.SourceSans
  1028. WelcomeName.Text = "Welcome"
  1029. WelcomeName.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1030. WelcomeName.TextSize = 26
  1031. WelcomeName.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1032. WelcomeName.TextStrokeTransparency = 0.64999997615814
  1033. WelcomeName.TextWrapped = true
  1034.  
  1035. WelcomeMOTD.Name = "WelcomeMOTD"
  1036. WelcomeMOTD.Parent = HomeScreen
  1037. WelcomeMOTD.BackgroundColor3 = Color3.new(1, 1, 1)
  1038. WelcomeMOTD.BackgroundTransparency = 1
  1039. WelcomeMOTD.Position = UDim2.new(0.524598598, 0, 0.615812302, 0)
  1040. WelcomeMOTD.Size = UDim2.new(0, 295, 0, 122)
  1041. WelcomeMOTD.Font = Enum.Font.SourceSans
  1042. WelcomeMOTD.Text = "I heard there are a lot of wild haxors on the lose. Be careful out there."
  1043. WelcomeMOTD.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1044. WelcomeMOTD.TextSize = 30
  1045. WelcomeMOTD.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1046. WelcomeMOTD.TextStrokeTransparency = 0.64999997615814
  1047. WelcomeMOTD.TextWrapped = true
  1048.  
  1049. WelcomeAuthor.Name = "WelcomeAuthor"
  1050. WelcomeAuthor.Parent = HomeScreen
  1051. WelcomeAuthor.BackgroundColor3 = Color3.new(1, 1, 1)
  1052. WelcomeAuthor.BackgroundTransparency = 1
  1053. WelcomeAuthor.BorderSizePixel = 0
  1054. WelcomeAuthor.Position = UDim2.new(0.621117353, 0, 1.14139926, 0)
  1055. WelcomeAuthor.Size = UDim2.new(0, 200, 0, 22)
  1056. WelcomeAuthor.Font = Enum.Font.SourceSans
  1057. WelcomeAuthor.Text = "By Casual#2435"
  1058. WelcomeAuthor.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1059. WelcomeAuthor.TextSize = 12
  1060. WelcomeAuthor.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1061. WelcomeAuthor.TextStrokeTransparency = 0.64999997615814
  1062. WelcomeAuthor.TextWrapped = true
  1063.  
  1064. ChangelogScreen.Name = "ChangelogScreen"
  1065. ChangelogScreen.Parent = Drag
  1066. ChangelogScreen.BackgroundColor3 = Color3.new(1, 1, 1)
  1067. ChangelogScreen.BackgroundTransparency = 1
  1068. ChangelogScreen.BorderSizePixel = 0
  1069. ChangelogScreen.Position = UDim2.new(0.24833703, 0, 0.17521368, 0)
  1070. ChangelogScreen.Size = UDim2.new(0, 337, 0, 193)
  1071. ChangelogScreen.Visible = false
  1072.  
  1073. Logs.Name = "Logs"
  1074. Logs.Parent = ChangelogScreen
  1075. Logs.BackgroundColor3 = Color3.new(1, 1, 1)
  1076. Logs.BackgroundTransparency = 1
  1077. Logs.BorderSizePixel = 0
  1078. Logs.Position = UDim2.new(0.0207715146, 0, 0, 0)
  1079. Logs.Size = UDim2.new(0, 322, 0, 39)
  1080. Logs.Font = Enum.Font.SourceSans
  1081. Logs.Text = "STEVANO"
  1082. Logs.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1083. Logs.TextSize = 20
  1084.  
  1085. Logs2.Name = "Logs2"
  1086. Logs2.Parent = ChangelogScreen
  1087. Logs2.BackgroundColor3 = Color3.new(1, 1, 1)
  1088. Logs2.BackgroundTransparency = 1
  1089. Logs2.BorderSizePixel = 0
  1090. Logs2.Position = UDim2.new(0.0296735913, 0, 0.160621762, 0)
  1091. Logs2.Size = UDim2.new(0, 322, 0, 85)
  1092. Logs2.Font = Enum.Font.SourceSans
  1093. Logs2.Text = "STEVANO"
  1094. Logs2.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1095. Logs2.TextSize = 20
  1096. Logs2.TextWrapped = true
  1097.  
  1098. Logs3.Name = "Logs3"
  1099. Logs3.Parent = ChangelogScreen
  1100. Logs3.BackgroundColor3 = Color3.new(1, 1, 1)
  1101. Logs3.BackgroundTransparency = 1
  1102. Logs3.BorderSizePixel = 0
  1103. Logs3.Position = UDim2.new(0.0296735913, 0, 0.46632123, 0)
  1104. Logs3.Size = UDim2.new(0, 322, 0, 85)
  1105. Logs3.Font = Enum.Font.SourceSans
  1106. Logs3.Text = "STEVANO"
  1107. Logs3.TextColor3 = Color3.new(0.117647, 0.501961, 0.639216)
  1108. Logs3.TextSize = 20
  1109. Logs3.TextWrapped = true
  1110.  
  1111. Log1and2Div.Name = "Log1and2Div"
  1112. Log1and2Div.Parent = ChangelogScreen
  1113. Log1and2Div.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1114. Log1and2Div.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1115. Log1and2Div.Position = UDim2.new(0.0534124635, 0, 0.196891189, 0)
  1116. Log1and2Div.Size = UDim2.new(0, 306, 0, 1)
  1117. Log1and2Div.Font = Enum.Font.SourceSans
  1118. Log1and2Div.Text = ""
  1119. Log1and2Div.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1120. Log1and2Div.TextSize = 24
  1121. Log1and2Div.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1122.  
  1123. Log2and3Div.Name = "Log2and3Div"
  1124. Log2and3Div.Parent = ChangelogScreen
  1125. Log2and3Div.BackgroundColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1126. Log2and3Div.BorderColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1127. Log2and3Div.Position = UDim2.new(0.0534124635, 0, 0.569948196, 0)
  1128. Log2and3Div.Size = UDim2.new(0, 306, 0, 1)
  1129. Log2and3Div.Font = Enum.Font.SourceSans
  1130. Log2and3Div.Text = ""
  1131. Log2and3Div.TextColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1132. Log2and3Div.TextSize = 24
  1133. Log2and3Div.TextStrokeColor3 = Color3.new(0.0392157, 0.0627451, 0.0823529)
  1134.  
  1135. --------
  1136. -- Fly
  1137. repeat wait()
  1138. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  1139. local mouse = game.Players.LocalPlayer:GetMouse()
  1140. repeat wait() until mouse
  1141. local plr = game.Players.LocalPlayer
  1142. local torso = plr.Character.Torso
  1143. local flying = true
  1144. local deb = true
  1145. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  1146. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1147. local maxspeed = 50
  1148. local speed = 0
  1149.  
  1150. function Fly()
  1151. local bg = Instance.new("BodyGyro", torso)
  1152. bg.P = 9e4
  1153. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  1154. bg.cframe = torso.CFrame
  1155. local bv = Instance.new("BodyVelocity", torso)
  1156. bv.velocity = Vector3.new(0,0.1,0)
  1157. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  1158. repeat wait()
  1159. plr.Character.Humanoid.PlatformStand = true
  1160. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  1161. speed = speed+.5+(speed/maxspeed)
  1162. if speed > maxspeed then
  1163. speed = maxspeed
  1164. end
  1165. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  1166. speed = speed-1
  1167. if speed < 0 then
  1168. speed = 0
  1169. end
  1170. end
  1171. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  1172. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1173. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  1174. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  1175. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  1176. else
  1177. bv.velocity = Vector3.new(0,0.1,0)
  1178. end
  1179. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  1180. until not flying
  1181. ctrl = {f = 0, b = 0, l = 0, r = 0}
  1182. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  1183. speed = 0
  1184. bg:Destroy()
  1185. bv:Destroy()
  1186. plr.Character.Humanoid.PlatformStand = false
  1187. end
  1188. mouse.KeyDown:connect(function(key)
  1189. if key:lower() == "q" then
  1190. if flying then flying = false
  1191. AAPressQ.Visible = false
  1192. else
  1193. flying = true
  1194. Fly()
  1195. end
  1196. elseif key:lower() == "w" then
  1197. ctrl.f = 1
  1198. elseif key:lower() == "s" then
  1199. ctrl.b = -1
  1200. elseif key:lower() == "a" then
  1201. ctrl.l = -1
  1202. elseif key:lower() == "d" then
  1203. ctrl.r = 1
  1204. end
  1205. end)
  1206. mouse.KeyUp:connect(function(key)
  1207. if key:lower() == "w" then
  1208. ctrl.f = 0
  1209. elseif key:lower() == "s" then
  1210. ctrl.b = 0
  1211. elseif key:lower() == "a" then
  1212. ctrl.l = 0
  1213. elseif key:lower() == "d" then
  1214. ctrl.r = 0
  1215. end
  1216. end)
  1217. Fly()
  1218.  
  1219. AnimWelcomeScreen.Visible = true
  1220. AnimWelcomeScreen:TweenSizeAndPosition(UDim2.new(0, 200, 0, 200), UDim2.new(0.5, -100, 0.5, -100), "Out", "Quad", .25)
  1221. wait(2)
  1222. ImageLabel:Destroy()
  1223. AnimWelcomeScreen:TweenSizeAndPosition(UDim2.new(0, 0, 0, 0),UDim2.new(0.5, 0, 0.5, 0), "Out", "Bounce", 0.5);wait(0.5);AnimWelcomeScreen:Destroy();
  1224. wait(2)
  1225. HomeScreen.Visible = true
  1226. Main.Visible = true
  1227.  
  1228.  
  1229. HiName.Text = "Hi "..game.Players.LocalPlayer.Name
  1230. WelcomeName.Text = "Welcome "..game.Players.LocalPlayer.Name
  1231.  
  1232. --Opening Tabs
  1233. P1.MouseButton1Down:connect(function()
  1234. PSelected.Text = P1.Text
  1235. end)
  1236. P2.MouseButton1Down:connect(function()
  1237. PSelected.Text = P2.Text
  1238. end)
  1239. P3.MouseButton1Down:connect(function()
  1240. PSelected.Text = P3.Text
  1241. end)
  1242. P4.MouseButton1Down:connect(function()
  1243. PSelected.Text = P4.Text
  1244. end)
  1245. P5.MouseButton1Down:connect(function()
  1246. PSelected.Text = P5.Text
  1247. end)
  1248. P6.MouseButton1Down:connect(function()
  1249. PSelected.Text = P6.Text
  1250. end)
  1251. local buttons = {
  1252. PlayersScreen.P1,
  1253. PlayersScreen.P2,
  1254. PlayersScreen.P3,
  1255. PlayersScreen.P4,
  1256. PlayersScreen.P5,
  1257. PlayersScreen.P6
  1258. }
  1259.  
  1260. for i, v in pairs(game.Players:GetChildren()) do
  1261. buttons[i].Text = v.Name
  1262. buttons[i].Visible = true
  1263. end
  1264. game.Players.PlayerRemoving:connect(function()
  1265. for i, v in pairs(game.Players:GetChildren()) do
  1266. buttons[i].Text = v.Name
  1267. buttons[i].Visible = true
  1268. end
  1269. end)
  1270. game.Players.PlayerAdded:connect(function()
  1271. for i, v in pairs(game.Players:GetChildren()) do
  1272. buttons[i].Text = v.Name
  1273. buttons[i].Visible = true
  1274. end
  1275. end)
  1276.  
  1277. if PlayersScreen.P1.text == " " then
  1278. P1.Visible = false
  1279. end
  1280.  
  1281. if PlayersScreen.P2.text == " " then
  1282. P2.Visible = false
  1283. end
  1284.  
  1285. if PlayersScreen.P3.text == " " then
  1286. P3.Visible = false
  1287. end
  1288.  
  1289. if PlayersScreen.P4.text == " " then
  1290. P4.Visible = false
  1291. end
  1292.  
  1293. if PlayersScreen.P5.text == " " then
  1294. P5.Visible = false
  1295. end
  1296.  
  1297. if PlayersScreen.P6.text == "" then
  1298. P6.Visible = false
  1299. end
  1300.  
  1301. TpToPlayer.MouseButton1Down:connect(function()
  1302. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[PSelected.Text].HumanoidRootPart.CFrame
  1303. end)
  1304.  
  1305. TpToPlayerBase.MouseButton1Down:connect(function()
  1306. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  1307. if v.Owner.Value == game.Players[PSelected.Text] then
  1308. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  1309. end
  1310. end
  1311. end)
  1312.  
  1313. X.MouseButton1Down:connect(function()
  1314. Drag.Visible = false
  1315. OpenBtn.Visible = true
  1316. end)
  1317.  
  1318. OpenBtn.MouseButton1Down:connect(function()
  1319. Drag.Visible = true
  1320. OpenBtn.Visible = false
  1321. end)
  1322.  
  1323. HomeLocal.MouseButton1Down:connect(function()
  1324. Main.Visible = true
  1325. AnimWelcomeScreen.Visible = false
  1326. HomeScreen.Visible = false
  1327. LocalScreen.Visible = true
  1328. PlayersScreen.Visible = false
  1329. WoodScreen.Visible = false
  1330. TeleportsScreen.Visible = false
  1331. ToolsScreen.Visible = false
  1332. OpenBtn.Visible = false
  1333. ChangelogScreen.Visible = false
  1334. end)
  1335.  
  1336. HomePlayers.MouseButton1Down:connect(function()
  1337. Main.Visible = true
  1338. AnimWelcomeScreen.Visible = false
  1339. HomeScreen.Visible = false
  1340. LocalScreen.Visible = false
  1341. PlayersScreen.Visible = true
  1342. WoodScreen.Visible = false
  1343. TeleportsScreen.Visible = false
  1344. ToolsScreen.Visible = false
  1345. OpenBtn.Visible = false
  1346. ChangelogScreen.Visible = false
  1347. end)
  1348.  
  1349. HomeWood.MouseButton1Down:connect(function()
  1350. Main.Visible = true
  1351. AnimWelcomeScreen.Visible = false
  1352. HomeScreen.Visible = false
  1353. LocalScreen.Visible = false
  1354. PlayersScreen.Visible = false
  1355. WoodScreen.Visible = true
  1356. TeleportsScreen.Visible = false
  1357. ToolsScreen.Visible = false
  1358. OpenBtn.Visible = false
  1359. ChangelogScreen.Visible = false
  1360. end)
  1361.  
  1362. HomeTeleports.MouseButton1Down:connect(function()
  1363. Main.Visible = true
  1364. AnimWelcomeScreen.Visible = false
  1365. HomeScreen.Visible = false
  1366. LocalScreen.Visible = false
  1367. PlayersScreen.Visible = false
  1368. WoodScreen.Visible = false
  1369. TeleportsScreen.Visible = true
  1370. ToolsScreen.Visible = false
  1371. OpenBtn.Visible = false
  1372. ChangelogScreen.Visible = false
  1373. end)
  1374.  
  1375. HomeTools.MouseButton1Down:connect(function()
  1376. Main.Visible = true
  1377. AnimWelcomeScreen.Visible = false
  1378. HomeScreen.Visible = false
  1379. LocalScreen.Visible = false
  1380. PlayersScreen.Visible = false
  1381. WoodScreen.Visible = false
  1382. TeleportsScreen.Visible = false
  1383. ToolsScreen.Visible = true
  1384. OpenBtn.Visible = false
  1385. ChangelogScreen.Visible = false
  1386. end)
  1387.  
  1388. HomeChangelog.MouseButton1Down:connect(function()
  1389. Main.Visible = true
  1390. AnimWelcomeScreen.Visible = false
  1391. HomeScreen.Visible = false
  1392. LocalScreen.Visible = false
  1393. PlayersScreen.Visible = false
  1394. WoodScreen.Visible = false
  1395. TeleportsScreen.Visible = false
  1396. ToolsScreen.Visible = false
  1397. OpenBtn.Visible = false
  1398. ChangelogScreen.Visible = true
  1399. end)
  1400.  
  1401. --Teleports
  1402. Palm.MouseButton1Down:connect(function()
  1403. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(2570, -5, -32))
  1404. end)
  1405.  
  1406. BobsShack.MouseButton1Down:connect(function()
  1407. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(259, 8, -2542))
  1408. end)
  1409.  
  1410. WoodRUs.MouseButton1Down:connect(function()
  1411. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(251, 2, 57))
  1412. end)
  1413.  
  1414. Volcano.MouseButton1Down:connect(function()
  1415. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1585, 622, 1140))
  1416. end)
  1417.  
  1418. Swamp.MouseButton1Down:connect(function()
  1419. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1209, 132, -801))
  1420. end)
  1421.  
  1422. StrangeMan.MouseButton1Down:connect(function()
  1423. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1061, 16, 1130))
  1424. end)
  1425.  
  1426. Spawn.MouseButton1Down:connect(function()
  1427. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(155, 3, 74))
  1428. end)
  1429.  
  1430. Shrine.MouseButton1Down:connect(function()
  1431. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1606, 195, 929))
  1432. end)
  1433.  
  1434. Lodge.MouseButton1Down:connect(function()
  1435. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(1243, 63, 2305))
  1436. end)
  1437.  
  1438. LinksLogic.MouseButton1Down:connect(function()
  1439. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(4606, 7, -779))
  1440. end)
  1441.  
  1442. GreenBox.MouseButton1Down:connect(function()
  1443. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-1675, 348, 1476))
  1444. end)
  1445.  
  1446. Fancy.MouseButton1Down:connect(function()
  1447. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(491, 3, -1719))
  1448. end)
  1449.  
  1450. EndTimes.MouseButton1Down:connect(function()
  1451. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(113, -213, -950))
  1452. end)
  1453.  
  1454. Dropoff.MouseButton1Down:connect(function()
  1455. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(314, -2, 123))
  1456. end)
  1457.  
  1458. Den.MouseButton1Down:connect(function()
  1459. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(331, 45, 1941))
  1460. end)
  1461.  
  1462. Cave.MouseButton1Down:connect(function()
  1463. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(3581, -179, 430))
  1464. end)
  1465.  
  1466. BoxedCars.MouseButton1Down:connect(function()
  1467. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(508, 3, -1463))
  1468. end)
  1469.  
  1470. YourPlot.MouseButton1Down:connect(function()
  1471. for i, v in pairs(game.Workspace.Properties:GetChildren()) do
  1472. if v.Owner.Value == game.Players.LocalPlayer then
  1473. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.OriginSquare.CFrame
  1474. end
  1475. end
  1476. end)
  1477. --------------
  1478. --LocalPlayer Commands
  1479. -- God
  1480. God.MouseButton1Down:connect(function()
  1481. game.Players.LocalPlayer.Character.Humanoid.Name = "1"
  1482. local l = game.Players.LocalPlayer.Character["1"]:Clone()
  1483. l.Parent = game.Players.LocalPlayer.Character
  1484. l.Name = "Humanoid"
  1485. wait(0.1)
  1486. game.Players.LocalPlayer.Character["1"]:Destroy()
  1487. game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character
  1488. game.Players.LocalPlayer.Character.Animate.Disabled = true
  1489. l.Changed:Connect(function()
  1490. if l then
  1491. l.WalkSpeed=game.Players.LocalPlayer.Character.Humanoid.WalkSpeed
  1492. l.JumpPower=game.Players.LocalPlayer.Character.Humanoid.JumpPower
  1493. end
  1494. end)
  1495. end)
  1496. -- Noclip
  1497. noclip = false
  1498. game:GetService('RunService').Stepped:connect(function()
  1499. if noclip then
  1500. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  1501. NoclipLabel.TextColor3 = Color3.new(0, 1, 0)
  1502. NoclipLabel.Text = "Enabled"
  1503. end
  1504. end)
  1505. Noclip.MouseButton1Down:connect(function()
  1506. noclip = not noclip
  1507. NoclipLabel.TextColor3 = Color3.new(0.7, 0, 0)
  1508. NoclipLabel.Text = "Disabled"
  1509. end)
  1510. -- Walkspeed
  1511. Walkspeed.MouseButton1Down:connect(function()
  1512. while true do
  1513. wait()
  1514. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = WalkspeedValue.Text
  1515. end
  1516. end)
  1517. -- Jumppower
  1518. Jumppower.MouseButton1Down:connect(function()
  1519. while true do
  1520. wait()
  1521. game.Players.LocalPlayer.Character.Humanoid.JumpPower = JumppowerValue.Text
  1522. end
  1523. end)
  1524. --Players Commands
  1525. -- Teleport To Player
  1526. -- teleport To Player Base
  1527.  
  1528. --Wood Commands
  1529. -- Teleport Cut Wood
  1530. TeleportCutWood.MouseButton1Down:connect(function()
  1531. for _, Log in pairs(game.Workspace.LogModels:GetChildren()) do
  1532. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  1533. if Log.Owner.Value == game.Players.LocalPlayer then
  1534. Log:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0, 15, 0))
  1535. end
  1536. end
  1537. end
  1538. end)
  1539.  
  1540. -- Sell Cut Wood
  1541. SellCutWood.MouseButton1Down:connect(function()
  1542. for _, Log in pairs(workspace.LogModels:GetChildren()) do
  1543. if Log.Name:sub(1, 6) == "Loose_" and Log:findFirstChild("Owner") then
  1544. if Log.Owner.Value == game.Players.LocalPlayer then
  1545. for i,v in pairs(Log:GetChildren()) do
  1546. if v.Name=="WoodSection" then
  1547. spawn(function()
  1548. for i=1,10 do
  1549. wait()
  1550. v.CFrame=CFrame.new(Vector3.new(315, -0.296, 85.791))*CFrame.Angles(math.rad(90),0,0)
  1551. end
  1552. end)
  1553. end
  1554. end
  1555. spawn(function()
  1556. for i=1,20 do
  1557. wait()
  1558. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(Log)
  1559. end
  1560. end)
  1561. end
  1562. end
  1563. end
  1564. end)
  1565. -- Teleport End Times Wood
  1566. TeleportEndTimesWood.MouseButton1Down:connect(function()
  1567. for i, v in pairs(game.Workspace:GetChildren()) do
  1568. if v.Name == "TreeRegion" then
  1569. for a, b in pairs(v:GetChildren()) do
  1570. tree(b, "LoneCave")
  1571. end
  1572. end
  1573. end
  1574. end)
  1575. -- Teleport Cave Crawler Wood
  1576. TeleportCaveCrawlerWood.MouseButton1Down:connect(function()
  1577. for i, v in pairs(game.Workspace:GetChildren()) do
  1578. if v.Name == "TreeRegion" then
  1579. for a, b in pairs(v:GetChildren()) do
  1580. tree(b, "CaveCrawler")
  1581. end
  1582. end
  1583. end
  1584. end)
  1585.  
  1586. --Tools Commands
  1587. -- Dupe
  1588. Dupe.MouseButton1Down:connect(function()
  1589. plr = game:GetService("Players").LocalPlayer
  1590. slot = plr.CurrentSaveSlot
  1591. if Option == false then
  1592. if slot.Value == -1 then
  1593. Option = true
  1594. slot.RobloxLocked = true
  1595. DupeLabel.TextColor3 = Color3.new(0, 1, 0)
  1596. DupeLabel.Text = "Enabled"
  1597. end
  1598. else
  1599. Option = false
  1600. slot.RobloxLocked = false
  1601. DupeLabel.TextColor3 = Color3.new(0.7, 0, 0)
  1602. DupeLabel.Text = "Disabled"
  1603. end
  1604. end)
  1605. -- Move Tools
  1606. Move.MouseButton1Down:connect(function()
  1607. local player = game.Players.LocalPlayer
  1608. local Character = player.Character or player.CharacterAdded:wait()
  1609. local Humanoid = Character:WaitForChild("Humanoid")
  1610. local walkSpeed = Humanoid.WalkSpeed
  1611. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger.Disabled = true
  1612. _G.dragRangeMin = 5
  1613. fivefour = coroutine.wrap(function()
  1614. EKey = false
  1615. QKey = false
  1616. player:GetMouse().KeyDown:connect(function(key)
  1617. if string.lower(key) == "e" then
  1618. EKey = true
  1619. elseif string.lower(key) == "q" then
  1620. QKey = true
  1621. end
  1622. end)
  1623. player:GetMouse().KeyUp:connect(function(key)
  1624. if string.lower(key) == "e" then
  1625. EKey = false
  1626. elseif string.lower(key) == "q" then
  1627. QKey = false
  1628. end
  1629. end)
  1630. while wait(0.1) do
  1631. if EKey then
  1632. F = FVal
  1633. FVal = FVal + 1000
  1634. ChangeForce(F+1000)
  1635. print(F)
  1636. end
  1637. if QKey then
  1638. F = FVal
  1639. FVal = FVal - 1000
  1640. ChangeForce(F-1000)
  1641. print(F)
  1642. end
  1643. end
  1644.  
  1645. end)
  1646. fivefour()
  1647. local dragPart = Instance.new("Part",game.Players.LocalPlayer.PlayerGui)--game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger.Dragger
  1648. dragPart.Size = Vector3.new(0.2,0.2,0.2)
  1649. dragPart.BrickColor = BrickColor.new("Really red")
  1650. player.CharacterAdded:connect(function()
  1651. Character = player.Character
  1652. Humanoid = Character:WaitForChild("Humanoid")
  1653. Humanoid.Died:connect(function()
  1654. dragPart.Parent = nil
  1655. end)
  1656. end)
  1657.  
  1658. wait(1)
  1659. local dragRangeMax = 10000
  1660. local dragRangeMin = _G.dragRangeMin
  1661.  
  1662. local camera = workspace.CurrentCamera
  1663. local mouse = player:GetMouse()
  1664.  
  1665. local button1Down = false
  1666. local dragRange = dragRangeMax
  1667. FVal = 80000
  1668. local bodyPosition = Instance.new("BodyPosition", dragPart)
  1669. bodyPosition.maxForce = Vector3.new(1, 1, 1) * FVal
  1670. bodyPosition.D = 1000
  1671. bodyPosition.P = 4000
  1672. function ChangeForce(F)
  1673. if F > 0 then
  1674. F = bodyPosition.maxForce.X+F
  1675. bodyPosition.maxForce = Vector3.new(1, 1, 1) * F
  1676. else
  1677. F = bodyPosition.maxForce.X-F
  1678. bodyPosition.maxForce = Vector3.new(1, 1, 1) * F
  1679. end
  1680. end
  1681.  
  1682. local bodyGyro = Instance.new("BodyGyro", dragPart)
  1683. bodyGyro.maxTorque = Vector3.new(1, 1, 1) * 200 --4000 -- * 0.000012
  1684. bodyGyro.P = 1200
  1685. bodyGyro.D = 140 --15
  1686.  
  1687. --bodyPosition.P = bodyPosition.P * 1/19
  1688. --bodyPosition.D = bodyPosition.D * 1/19
  1689. --bodyGyro.P = bodyGyro.P * 1/19
  1690. --bodyGyro.D = bodyGyro.D * 1/19
  1691.  
  1692. local rotateCFrame = CFrame.new()
  1693.  
  1694. local weld = Instance.new("Weld", dragPart)
  1695.  
  1696. --local interactPermission = require(game.ReplicatedStorage.Interaction.InteractionPermission)
  1697. local clientIsDragging = game.ReplicatedStorage.Interaction.ClientIsDragging
  1698.  
  1699. local carryAnimationTrack
  1700.  
  1701.  
  1702. --------------------------------[[ Drag Main ]]------------------------------------
  1703.  
  1704. local draggingPart = false
  1705.  
  1706. function click()
  1707. button1Down = true
  1708.  
  1709. local targetObject = game.Players.LocalPlayer:GetMouse().Target
  1710. if not canDrag(targetObject) then
  1711. return
  1712. end
  1713.  
  1714. local mouseHit = game.Players.LocalPlayer:GetMouse().Hit.p
  1715. if (mouseHit - Character.Head.Position).magnitude > dragRangeMax then
  1716. return
  1717. end
  1718.  
  1719. initializeDrag(targetObject, mouseHit)
  1720. rotateCFrame = CFrame.new()
  1721.  
  1722. carryAnimationTrack:Play(0.1, 1, 1)
  1723.  
  1724. local dragIsFailing = 0
  1725. local dragTime = 0
  1726.  
  1727.  
  1728. while button1Down and canDrag(targetObject) do
  1729. local desiredPos = Character.Head.Position + (game.Players.LocalPlayer:GetMouse().Hit.p - Character.Head.Position).unit * dragRange
  1730.  
  1731. local dragRay = Ray.new(Character.Head.Position, desiredPos - Character.Head.Position)
  1732. local part, pos = workspace:FindPartOnRayWithIgnoreList(dragRay, {Character, dragPart, targetObject.Parent})
  1733.  
  1734. if part then
  1735. desiredPos = pos
  1736. end
  1737.  
  1738. if (camera.CoordinateFrame.p - Character.Head.Position).magnitude > 2 then
  1739. desiredPos = desiredPos + Vector3.new(0, 1.8, 0)
  1740. end
  1741.  
  1742. moveDrag(desiredPos)
  1743. bodyGyro.cframe = CFrame.new(dragPart.Position, camera.CoordinateFrame.p) * rotateCFrame
  1744.  
  1745. local targParent = findHighestParent(targetObject) or targetObject
  1746.  
  1747. local attemptingToSurf = false
  1748. for _, check in pairs({{Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.7, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  1749. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  1750. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  1751. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  1752. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.7, -2.8, 0)).p, Vector3.new(0, -2, 0))},
  1753.  
  1754. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  1755. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  1756. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, 0.6)).p, Vector3.new(0, -2, 0))},
  1757.  
  1758. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  1759. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  1760. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.35, -2.8, -0.6)).p, Vector3.new(0, -2, 0))},
  1761.  
  1762. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.5, -0.8, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  1763. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.5, -0.8, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  1764. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(0.5, -1.3, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing},
  1765. {Ray = Ray.new((Character.HumanoidRootPart.CFrame * CFrame.new(-0.5, -1.3, 0)).p, Character.HumanoidRootPart.CFrame.lookVector), State = Enum.HumanoidStateType.Climbing}
  1766.  
  1767. }) do
  1768.  
  1769. local ray = check.Ray
  1770. local part, _ = workspace:FindPartOnRayWithIgnoreList(ray, {Character})
  1771. local op = part
  1772. part = part and findHighestParent(part)
  1773.  
  1774. if part and (not check.State or Humanoid:GetState() == check.State) then
  1775. if part == targParent then
  1776. attemptingToSurf = true
  1777. else
  1778. for _, connectedPart in pairs(op:GetConnectedParts(true)) do
  1779.  
  1780. if connectedPart == targetObject--[[targParent]] then
  1781. attemptingToSurf = true
  1782. break
  1783. end
  1784. end
  1785. end
  1786.  
  1787. if attemptingToSurf then
  1788. break
  1789. end
  1790. end
  1791. end
  1792.  
  1793.  
  1794.  
  1795.  
  1796.  
  1797. local falling = Humanoid:GetState() == Enum.HumanoidStateType.Freefall or Humanoid:GetState() == Enum.HumanoidStateType.FallingDown--not part1 and not part2
  1798.  
  1799.  
  1800. if attemptingToSurf then
  1801. dragIsFailing = 0
  1802. elseif falling then
  1803. dragIsFailing = 0
  1804. elseif (dragPart.Position - desiredPos).magnitude > 5 then
  1805. dragIsFailing = 0
  1806. else
  1807. dragIsFailing = 0
  1808. end
  1809. if dragIsFailing > 16 then
  1810. break
  1811. end
  1812.  
  1813.  
  1814. if dragTime % 10 == 0 and targParent.Parent:FindFirstChild("BedInfo") and targParent.Parent:FindFirstChild("Main") then
  1815. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Parent.Scripts.VehicleControl.SetVehicleOwnership:Fire(targParent.Parent.Main)
  1816. end
  1817.  
  1818. clientIsDragging:FireServer(targParent.Parent)
  1819.  
  1820. wait()
  1821. dragTime = 0
  1822. end
  1823.  
  1824. carryAnimationTrack:Stop()
  1825.  
  1826. endDrag()
  1827. end
  1828.  
  1829.  
  1830. function findHighestParent(child)
  1831. if not child or not child.Parent or child.Parent == workspace then
  1832. return nil
  1833. end
  1834.  
  1835. local ret = child.Parent:FindFirstChild("Owner") and child
  1836. return findHighestParent(child.Parent) or ret
  1837. end
  1838.  
  1839.  
  1840.  
  1841. function clickEnded()
  1842. button1Down = false
  1843. end
  1844.  
  1845. function holdDistanceChanged()
  1846. dragRange = dragRangeMax--[[_G.dragRangeMin + (1 - dist) * (dragRangeMax - _G.dragRangeMin)]]
  1847. end
  1848.  
  1849.  
  1850. function canDrag(targetObject)
  1851.  
  1852.  
  1853. if not (targetObject and not targetObject.Anchored and targetObject.Parent and Humanoid.Health > 0) then -- General conditions
  1854. return false
  1855. end
  1856.  
  1857. if targetObject.Name == "LeafPart" then
  1858. return false
  1859. end
  1860.  
  1861. local originTargetObject = targetObject
  1862. targetObject = findHighestParent(targetObject) or targetObject
  1863.  
  1864. bodyGyro.Parent = dragPart
  1865.  
  1866.  
  1867. --[[if not (targetObject.Parent:FindFirstChild("Owner") or targetObject.Parent.Parent:FindFirstChild("Owner")) then
  1868. return otherDraggable(targetObject, originTargetObject)
  1869. end]]
  1870.  
  1871. if targetObject.Parent:FindFirstChild("Owner") or targetObject.Parent.Parent:FindFirstChild("Owner") then
  1872. return true
  1873. end
  1874.  
  1875. if targetObject.Parent:FindFirstChild("TreeClass") then -- Wood class
  1876. return true
  1877. end
  1878. if targetObject.Parent:FindFirstChild("BoxItemName") then -- Shop items
  1879. return true
  1880. end
  1881. if targetObject.Parent:FindFirstChild("PurchasedBoxItemName") then -- Purchased box items
  1882. return true
  1883. end
  1884. if targetObject.Parent:FindFirstChild("Handle") then -- Tool items
  1885. return true
  1886. end
  1887.  
  1888. return otherDraggable(targetObject, originTargetObject)
  1889. end
  1890.  
  1891. function otherDraggable(targetObject, originTargetObject)
  1892. local draggable = targetObject and targetObject.Parent and targetObject.Parent:FindFirstChild("DraggableItem") or originTargetObject and originTargetObject.Parent and originTargetObject.Parent:FindFirstChild("DraggableItem")
  1893. if draggable then -- Other stuff
  1894. if draggable:FindFirstChild("NoRotate") then
  1895. bodyGyro.Parent = nil
  1896. end
  1897. return true
  1898. end
  1899. end
  1900.  
  1901. function initializeDrag(targetObject,mouseHit)
  1902. draggingPart = true
  1903. mouse.TargetFilter = targetObject and findHighestParent(targetObject) and findHighestParent(targetObject).Parent or targetObject
  1904.  
  1905. dragPart.CFrame = CFrame.new(mouseHit, camera.CoordinateFrame.p)
  1906.  
  1907. weld.Part0 = dragPart
  1908. weld.Part1 = targetObject
  1909. weld.C0 = CFrame.new(mouseHit,camera.CoordinateFrame.p):inverse() * targetObject.CFrame
  1910. weld.Parent = dragPart
  1911.  
  1912. dragPart.Parent = workspace
  1913. end
  1914.  
  1915. function endDrag()
  1916. mouse.TargetFilter = nil
  1917. dragPart.Parent = nil
  1918. draggingPart = false
  1919. end
  1920.  
  1921. --------------------------------[[ Do Prompt ]]------------------------------------
  1922.  
  1923.  
  1924. local dragGuiState = ""
  1925. function interactLoop()
  1926. while true do
  1927. wait()
  1928.  
  1929. local newState = ""
  1930.  
  1931. local mouseHit = game.Players.LocalPlayer:GetMouse().Hit.p
  1932. local targetObject = game.Players.LocalPlayer:GetMouse().Target
  1933.  
  1934.  
  1935. if draggingPart then
  1936. newState = "Dragging"
  1937. elseif canDrag(targetObject) and not button1Down and (mouseHit - Character.Head.Position).magnitude < dragRangeMax then
  1938. newState = "Mouseover"
  1939. end
  1940.  
  1941. if true then-- not (newState == dragGuiState) then
  1942. dragGuiState = newState
  1943. setPlatformControls()
  1944.  
  1945. if dragGuiState == "" then
  1946. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = false
  1947. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = false
  1948. elseif dragGuiState == "Mouseover" then
  1949. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = true
  1950. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = false
  1951. elseif dragGuiState == "Dragging" then
  1952. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.Visible = false
  1953. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.Visible = not (bodyGyro.Parent == nil) and (not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 1)
  1954. end
  1955. end
  1956.  
  1957. end
  1958. end
  1959.  
  1960.  
  1961. --------------------------------[[ Drag Moving ]]------------------------------------
  1962.  
  1963.  
  1964. function moveDrag(pos)
  1965. bodyPosition.position = pos
  1966. end
  1967. local rotateSpeedReduce = 0.036
  1968.  
  1969. local lastRotateTick
  1970. function crotate(amount, speed)
  1971.  
  1972. if not draggingPart then
  1973. if not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 2 then
  1974. Humanoid.WalkSpeed = walkSpeed
  1975. end
  1976. return
  1977. end
  1978.  
  1979. if Humanoid.WalkSpeed > 1 then
  1980. walkSpeed = Humanoid.WalkSpeed
  1981. Humanoid.WalkSpeed = 0
  1982. end
  1983.  
  1984. lastRotateTick = tick()
  1985. local thisRotateTick = lastRotateTick
  1986.  
  1987. while draggingPart and amount.magnitude > 0 and lastRotateTick == thisRotateTick do
  1988. rotateCFrame = CFrame.Angles(0, -amount.X * rotateSpeedReduce, 0) * CFrame.Angles(amount.Y * rotateSpeedReduce, 0, 0) * rotateCFrame
  1989. wait()
  1990. end
  1991.  
  1992. if amount.magnitude == 0 then
  1993. if not player:FindFirstChild("IsChatting") or player.IsChatting.Value < 2 then
  1994. Humanoid.WalkSpeed = walkSpeed
  1995. end
  1996. end
  1997. end
  1998.  
  1999. --------------------------------[[ User Input ]]------------------------------------
  2000.  
  2001. wait(1)
  2002.  
  2003. carryAnimationTrack = Humanoid:LoadAnimation(game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Dragger:WaitForChild("CarryItem"))
  2004.  
  2005. --input = require(game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.Parent:WaitForChild("Scripts"):WaitForChild("UserInput"))
  2006.  
  2007. game.Players.LocalPlayer:GetMouse().Button1Down:connect(function()
  2008. click()
  2009. holdDistanceChanged()
  2010. end)
  2011. game.Players.LocalPlayer:GetMouse().Button1Up:connect(function()
  2012. clickEnded()
  2013. end)
  2014. --input.ClickBegan(click, holdDistanceChanged)
  2015. --input.ClickEnded(clickEnded)
  2016.  
  2017. --input.Rotate(crotate)
  2018.  
  2019.  
  2020. function setPlatformControls()
  2021. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.Image = game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.PC.Value
  2022. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanDrag.PlatformButton.KeyLabel.Text = "CLICK"
  2023. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.Image = game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.PC.Value
  2024. game.Players.LocalPlayer.PlayerGui.ItemDraggingGUI.CanRotate.PlatformButton.KeyLabel.Text = "SHIFT + WASD"
  2025. end
  2026.  
  2027.  
  2028. interactLoop()
  2029. end)
  2030. -- Golden Axe
  2031. GoldAxe.MouseButton1Down:connect(function()
  2032.  
  2033. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  2034. mouse1.Button1Down:connect(function(key)
  2035. Pressing=false
  2036. end)
  2037.  
  2038. function GetAxe()
  2039. if game.Players.LocalPlayer.Character:FindFirstChild("Tool") then
  2040. return game.Players.LocalPlayer.Character:FindFirstChild("Tool")
  2041. end
  2042. end
  2043.  
  2044. local HitPoints={
  2045. ['GoldAxe']= 50;
  2046. ['BasicHatchet']= 0.2;
  2047. ['Axe1']= 0.55;
  2048. ['Axe2']= 0.93;
  2049. ['AxeAlphaTesters']= 1.5;
  2050. ['Rukiryaxe']= 1.68;
  2051. ['Axe3']= 1.45;
  2052. ['AxeBetaTesters']= 1.45;
  2053. ['FireAxe']= 0.6;
  2054. ['SilverAxe']= 1.6;
  2055. ['EndTimesAxe']= 10000000;
  2056. ['AxeChicken']= 0.1;
  2057. ['CandyCaneAxe']= 0;
  2058. }
  2059.  
  2060. local Pressing = false
  2061.  
  2062. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  2063. mouse1.Button1Down:connect(function(key)
  2064. Pressing=true
  2065. poop(GetAxe())
  2066. end)
  2067.  
  2068. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  2069. mouse1.Button1Down:connect(function(key)
  2070. Pressing=false
  2071. end)
  2072.  
  2073. function cut(Height,Tool)
  2074. local Tree=game.Players.LocalPlayer:GetMouse().Target
  2075. game.ReplicatedStorage.Interaction.RemoteProxy:FireServer(Tree.Parent.CutEvent,{
  2076. ["cuttingClass"] = "Axe",
  2077. ["cooldown"] = 0,
  2078. ["hitPoints"] = HitPoints[Tool.ToolName.Value],
  2079. ["sectionId"] = 1,
  2080. ["tool"] = Tool,
  2081. ["faceVector"] = Vector3.new(-1,0,0),
  2082. ["height"] = Height})
  2083. end
  2084.  
  2085. function poop(Tool)
  2086. while Pressing do
  2087. for i=1,100 do
  2088. wait()
  2089. cut(_G.SIZE,Tool)
  2090. cut(1,Tool)
  2091. end
  2092. end
  2093. end
  2094. end)
  2095. -- Leaked Items
  2096. LeakedItems.MouseButton1Down:connect(function()
  2097. for _, Plank in pairs(game.Workspace.PlayerModels:GetChildren()) do
  2098. if Plank.Name == "Plank" then
  2099. if Plank.Owner.OwnerString.Value == game.Players.LocalPlayer.Name then
  2100. Plank:MoveTo(game.Players.LocalPlayer.Character.Torso.Position + Vector3.new(0,20,0))
  2101. end
  2102. end
  2103. end
  2104. end)
  2105.  
  2106. -- Ctrl + Click TP
  2107. TeleportTool.MouseButton1Down:connect(function()
  2108. local Plr = game:GetService("Players").LocalPlayer
  2109. local Mouse = Plr:GetMouse()
  2110.  
  2111. Mouse.Button1Down:connect(function()
  2112. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  2113. if not Mouse.Target then return end
  2114. Plr.Character:MoveTo(Mouse.Hit.p)
  2115. end)
  2116. end)
  2117. -- Grey Wood
  2118. GreyWood.MouseButton1Down:connect(function()
  2119. for i,v in next,workspace.PlayerModels:GetChildren() do
  2120. if v:FindFirstChild("Type") then
  2121. if v.Type.Value == "Blueprint" then
  2122. v.Type.Value = "Structure"
  2123. end
  2124. end
  2125. end
  2126. end)
  2127. -- Teleport Gifts
  2128. TeleportGifts.MouseButton1Down:connect(function()
  2129. for i,v in next,workspace.PlayerModels:GetChildren() do
  2130. if v:FindFirstChild("Main") and v.Owner.Value == game.Players.LocalPlayer then
  2131. for q,p in pairs(v:GetChildren()) do
  2132. if p.Name:lower():match("box") or p.Name == "DraggableItem" then
  2133. wait()
  2134. v.PrimaryPart = v.Main
  2135. game.ReplicatedStorage.Interaction.Verify:FireServer('Item owned by player',v)
  2136. v:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character.Head.CFrame)
  2137. game.ReplicatedStorage.Interaction.ClientIsDragging:FireServer(v)
  2138. end
  2139. end
  2140. end
  2141. end
  2142. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement