Advertisement
draligamer7Snakify

gui tundra

Nov 1st, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.86 KB | None | 0 0
  1. -- [FE] Location Grabber V1 by Vynixu.
  2.  
  3. local FEPositionGrabberV1 = Instance.new("ScreenGui")
  4. local Press = Instance.new("TextLabel")
  5. local Main = Instance.new("Frame")
  6. local Top = Instance.new("Frame")
  7. local SmallerTop = Instance.new("Frame")
  8. local Close = Instance.new("TextButton")
  9. local CurrentPos = Instance.new("TextLabel")
  10. local TextLabel = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. local TextLabel_3 = Instance.new("TextLabel")
  13. local TextLabel_4 = Instance.new("TextLabel")
  14. local Slot1 = Instance.new("TextLabel")
  15. local Slot2 = Instance.new("TextLabel")
  16. local Slot3 = Instance.new("TextLabel")
  17. local Slot1Button = Instance.new("TextButton")
  18. local Slot2Button = Instance.new("TextButton")
  19. local Slot3Button = Instance.new("TextButton")
  20. --Properties:
  21. FEPositionGrabberV1.Name = "[FE] Position Grabber V1"
  22. FEPositionGrabberV1.Parent = game.CoreGui
  23. FEPositionGrabberV1.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  24.  
  25. Press.Name = "Press"
  26. Press.Parent = FEPositionGrabberV1
  27. Press.BackgroundColor3 = Color3.new(1, 1, 1)
  28. Press.BackgroundTransparency = 1
  29. Press.BorderSizePixel = 0
  30. Press.Position = UDim2.new(0, 0, 1, -30)
  31. Press.Size = UDim2.new(1, -5, 0, 25)
  32. Press.Font = Enum.Font.Cartoon
  33. Press.Text = "Press 'P' to get your current location"
  34. Press.TextColor3 = Color3.new(1, 1, 1)
  35. Press.TextScaled = true
  36. Press.TextSize = 14
  37. Press.TextStrokeTransparency = 0
  38. Press.TextWrapped = true
  39. Press.TextXAlignment = Enum.TextXAlignment.Right
  40.  
  41. Main.Name = "Main"
  42. Main.Parent = FEPositionGrabberV1
  43. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  44. Main.BorderSizePixel = 0
  45. Main.Position = UDim2.new(0, 75, 0, 75)
  46. Main.Size = UDim2.new(0, 450, 0, 250)
  47.  
  48. Top.Name = "Top"
  49. Top.Parent = Main
  50. Top.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  51. Top.BorderSizePixel = 0
  52. Top.Size = UDim2.new(1, 0, 0, 40)
  53.  
  54. SmallerTop.Name = "SmallerTop"
  55. SmallerTop.Parent = Top
  56. SmallerTop.BackgroundColor3 = Color3.new(0, 0.509804, 0.843137)
  57. SmallerTop.BorderSizePixel = 0
  58. SmallerTop.Size = UDim2.new(1, 0, 0, 10)
  59.  
  60. Close.Name = "Close"
  61. Close.Parent = Top
  62. Close.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  63. Close.BackgroundTransparency = 1
  64. Close.BorderSizePixel = 0
  65. Close.Position = UDim2.new(1, -25, 0, 0)
  66. Close.Size = UDim2.new(0, 25, 0, 25)
  67. Close.Font = Enum.Font.Cartoon
  68. Close.Text = "X"
  69. Close.TextColor3 = Color3.new(1, 1, 1)
  70. Close.TextScaled = true
  71. Close.TextSize = 14
  72. Close.TextStrokeTransparency = 0
  73. Close.TextWrapped = true
  74.  
  75. CurrentPos.Name = "CurrentPos"
  76. CurrentPos.Parent = Main
  77. CurrentPos.BackgroundColor3 = Color3.new(1, 1, 1)
  78. CurrentPos.BackgroundTransparency = 1
  79. CurrentPos.BorderSizePixel = 0
  80. CurrentPos.Position = UDim2.new(0, 0, 1, -35)
  81. CurrentPos.Size = UDim2.new(1, 0, 0, 35)
  82. CurrentPos.Font = Enum.Font.Cartoon
  83. CurrentPos.Text = "(None)"
  84. CurrentPos.TextColor3 = Color3.new(1, 1, 1)
  85. CurrentPos.TextScaled = true
  86. CurrentPos.TextSize = 14
  87. CurrentPos.TextStrokeTransparency = 0
  88. CurrentPos.TextWrapped = true
  89.  
  90. TextLabel.Parent = Main
  91. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  92. TextLabel.BackgroundTransparency = 1
  93. TextLabel.BorderSizePixel = 0
  94. TextLabel.Position = UDim2.new(0, 0, 1, -60)
  95. TextLabel.Size = UDim2.new(1, 0, 0, 25)
  96. TextLabel.Font = Enum.Font.Cartoon
  97. TextLabel.Text = "Last Saved Position:"
  98. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  99. TextLabel.TextScaled = true
  100. TextLabel.TextSize = 14
  101. TextLabel.TextStrokeTransparency = 0
  102. TextLabel.TextWrapped = true
  103.  
  104. TextLabel_2.Parent = Main
  105. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  106. TextLabel_2.BackgroundTransparency = 1
  107. TextLabel_2.BorderSizePixel = 0
  108. TextLabel_2.Position = UDim2.new(0, 5, 0, 40)
  109. TextLabel_2.Size = UDim2.new(0, 75, 0, 25)
  110. TextLabel_2.Font = Enum.Font.Cartoon
  111. TextLabel_2.Text = "Slot 1:"
  112. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  113. TextLabel_2.TextScaled = true
  114. TextLabel_2.TextSize = 14
  115. TextLabel_2.TextStrokeTransparency = 0
  116. TextLabel_2.TextWrapped = true
  117. TextLabel_2.TextXAlignment = Enum.TextXAlignment.Left
  118.  
  119. TextLabel_3.Parent = Main
  120. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  121. TextLabel_3.BackgroundTransparency = 1
  122. TextLabel_3.BorderSizePixel = 0
  123. TextLabel_3.Position = UDim2.new(0, 5, 0, 70)
  124. TextLabel_3.Size = UDim2.new(0, 75, 0, 25)
  125. TextLabel_3.Font = Enum.Font.Cartoon
  126. TextLabel_3.Text = "Slot 2:"
  127. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  128. TextLabel_3.TextScaled = true
  129. TextLabel_3.TextSize = 14
  130. TextLabel_3.TextStrokeTransparency = 0
  131. TextLabel_3.TextWrapped = true
  132. TextLabel_3.TextXAlignment = Enum.TextXAlignment.Left
  133.  
  134. TextLabel_4.Parent = Main
  135. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  136. TextLabel_4.BackgroundTransparency = 1
  137. TextLabel_4.BorderSizePixel = 0
  138. TextLabel_4.Position = UDim2.new(0, 5, 0, 100)
  139. TextLabel_4.Size = UDim2.new(0, 75, 0, 25)
  140. TextLabel_4.Font = Enum.Font.Cartoon
  141. TextLabel_4.Text = "Slot 3:"
  142. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  143. TextLabel_4.TextScaled = true
  144. TextLabel_4.TextSize = 14
  145. TextLabel_4.TextStrokeTransparency = 0
  146. TextLabel_4.TextWrapped = true
  147. TextLabel_4.TextXAlignment = Enum.TextXAlignment.Left
  148.  
  149. Slot1.Name = "Slot1"
  150. Slot1.Parent = Main
  151. Slot1.BackgroundColor3 = Color3.new(1, 1, 1)
  152. Slot1.BackgroundTransparency = 1
  153. Slot1.BorderSizePixel = 0
  154. Slot1.Position = UDim2.new(0, 85, 0, 40)
  155. Slot1.Size = UDim2.new(1, -90, 0, 25)
  156. Slot1.Font = Enum.Font.Cartoon
  157. Slot1.Text = "(Slot 1)"
  158. Slot1.TextColor3 = Color3.new(1, 1, 1)
  159. Slot1.TextScaled = true
  160. Slot1.TextSize = 14
  161. Slot1.TextStrokeTransparency = 0
  162. Slot1.TextWrapped = true
  163. Slot1.TextXAlignment = Enum.TextXAlignment.Left
  164.  
  165. Slot2.Name = "Slot2"
  166. Slot2.Parent = Main
  167. Slot2.BackgroundColor3 = Color3.new(1, 1, 1)
  168. Slot2.BackgroundTransparency = 1
  169. Slot2.BorderSizePixel = 0
  170. Slot2.Position = UDim2.new(0, 85, 0, 70)
  171. Slot2.Size = UDim2.new(1, -90, 0, 25)
  172. Slot2.Font = Enum.Font.Cartoon
  173. Slot2.Text = "(Slot 2)"
  174. Slot2.TextColor3 = Color3.new(1, 1, 1)
  175. Slot2.TextScaled = true
  176. Slot2.TextSize = 14
  177. Slot2.TextStrokeTransparency = 0
  178. Slot2.TextWrapped = true
  179. Slot2.TextXAlignment = Enum.TextXAlignment.Left
  180.  
  181. Slot3.Name = "Slot3"
  182. Slot3.Parent = Main
  183. Slot3.BackgroundColor3 = Color3.new(1, 1, 1)
  184. Slot3.BackgroundTransparency = 1
  185. Slot3.BorderSizePixel = 0
  186. Slot3.Position = UDim2.new(0, 85, 0, 100)
  187. Slot3.Size = UDim2.new(1, -90, 0, 25)
  188. Slot3.Font = Enum.Font.Cartoon
  189. Slot3.Text = "(Slot 3)"
  190. Slot3.TextColor3 = Color3.new(1, 1, 1)
  191. Slot3.TextScaled = true
  192. Slot3.TextSize = 14
  193. Slot3.TextStrokeTransparency = 0
  194. Slot3.TextWrapped = true
  195. Slot3.TextXAlignment = Enum.TextXAlignment.Left
  196.  
  197. Slot1Button.Name = "Slot1Button"
  198. Slot1Button.Parent = Main
  199. Slot1Button.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  200. Slot1Button.BorderSizePixel = 0
  201. Slot1Button.Position = UDim2.new(0.5, -155, 1, -110)
  202. Slot1Button.Size = UDim2.new(0, 100, 0, 35)
  203. Slot1Button.Font = Enum.Font.Cartoon
  204. Slot1Button.Text = "Slot 1"
  205. Slot1Button.TextColor3 = Color3.new(1, 1, 1)
  206. Slot1Button.TextScaled = true
  207. Slot1Button.TextSize = 14
  208. Slot1Button.TextStrokeTransparency = 0
  209. Slot1Button.TextWrapped = true
  210.  
  211. Slot2Button.Name = "Slot2Button"
  212. Slot2Button.Parent = Main
  213. Slot2Button.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  214. Slot2Button.BorderSizePixel = 0
  215. Slot2Button.Position = UDim2.new(0.5, -50, 1, -110)
  216. Slot2Button.Size = UDim2.new(0, 100, 0, 35)
  217. Slot2Button.Font = Enum.Font.Cartoon
  218. Slot2Button.Text = "Slot 2"
  219. Slot2Button.TextColor3 = Color3.new(1, 1, 1)
  220. Slot2Button.TextScaled = true
  221. Slot2Button.TextSize = 14
  222. Slot2Button.TextStrokeTransparency = 0
  223. Slot2Button.TextWrapped = true
  224.  
  225. Slot3Button.Name = "Slot3Button"
  226. Slot3Button.Parent = Main
  227. Slot3Button.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  228. Slot3Button.BorderSizePixel = 0
  229. Slot3Button.Position = UDim2.new(0.5, 55, 1, -110)
  230. Slot3Button.Size = UDim2.new(0, 100, 0, 35)
  231. Slot3Button.Font = Enum.Font.Cartoon
  232. Slot3Button.Text = "Slot 3"
  233. Slot3Button.TextColor3 = Color3.new(1, 1, 1)
  234. Slot3Button.TextScaled = true
  235. Slot3Button.TextSize = 14
  236. Slot3Button.TextStrokeTransparency = 0
  237. Slot3Button.TextWrapped = true
  238. -- Scripts:
  239. function SCRIPT_QLTK78_FAKESCRIPT() -- FEPositionGrabberV1.GetPosition
  240. local script = Instance.new('LocalScript')
  241. script.Parent = FEPositionGrabberV1
  242. local plr = game:GetService"Players".LocalPlayer
  243. local r = plr:GetMouse()
  244. r.KeyDown:connect(function(k)
  245. if k == "p" then
  246.  
  247. local a = Instance.new("Part", game.Workspace)
  248. a.Anchored = true
  249. a.CanCollide = false
  250. a.Transparency = 0.65
  251. a.Size = Vector3.new(1, 1, 1)
  252. a.BrickColor = BrickColor.Random()
  253. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,0)
  254. a.Material = Enum.Material.SmoothPlastic
  255. a.TopSurface = Enum.SurfaceType.Smooth
  256. a.BottomSurface = Enum.SurfaceType.Smooth
  257.  
  258. local bill = Instance.new("BillboardGui", a)
  259. bill.StudsOffset = Vector3.new(0, 1.5, 0)
  260. bill.Size = UDim2.new(20, 0,1.5, 0)
  261.  
  262. local pos = Instance.new("TextLabel", bill)
  263. pos.Size = UDim2.new(1, 0,1, 0)
  264. pos.BackgroundTransparency = 1
  265. pos.TextColor3 = a.Color
  266. pos.Font = Enum.Font.Cartoon
  267. pos.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
  268. pos.TextStrokeTransparency = 0
  269. pos.TextScaled = true
  270. pos.Text = a.Position.X ..", ".. a.Position.Y ..", ".. a.Position.Z
  271.  
  272. script.Parent.Main.CurrentPos.TextColor3 = pos.TextColor3
  273. script.Parent.Main.CurrentPos.Text = pos.Text
  274.  
  275. local click = Instance.new("ClickDetector", a)
  276. click.MouseClick:Connect(function()
  277. pos.Text = "Deleting position..."
  278. repeat wait(.1)
  279. a.Transparency = a.Transparency + 0.025
  280. until
  281. a.Transparency >= 1
  282. a:Destroy()
  283. end)
  284. end
  285.  
  286. end)
  287.  
  288. end
  289. coroutine.resume(coroutine.create(SCRIPT_QLTK78_FAKESCRIPT))
  290. function SCRIPT_IBRU69_FAKESCRIPT() -- Close.Close
  291. local script = Instance.new('LocalScript')
  292. script.Parent = Close
  293. script.Parent.MouseButton1Click:Connect(function()
  294. script.Parent.Parent.Parent:TweenPosition(UDim2.new(1, -500,1, 0))
  295. wait(1)
  296. script.Parent.Parent.Parent.Parent.Press:TweenPosition(UDim2.new(0, 0,1, 0))
  297. wait(1)
  298. script.Parent.Parent.Parent.Parent.GetPosition:Destroy()
  299. end)
  300.  
  301. end
  302. coroutine.resume(coroutine.create(SCRIPT_IBRU69_FAKESCRIPT))
  303. function SCRIPT_PMIZ78_FAKESCRIPT() -- Slot1Button.Slot1Button
  304. local script = Instance.new('LocalScript')
  305. script.Parent = Slot1Button
  306. script.Parent.MouseButton1Click:Connect(function()
  307. if script.Parent.Parent.CurrentPos.Text == "(Current Position)" or script.Parent.Parent.CurrentPos.Text == "" then
  308. -- do nothing
  309. else
  310. script.Parent.Parent.Slot1.Text = script.Parent.Parent.CurrentPos.Text
  311. script.Parent.Parent.Slot1.TextColor3 = script.Parent.Parent.CurrentPos.TextColor3
  312. end
  313. end)
  314.  
  315. end
  316. coroutine.resume(coroutine.create(SCRIPT_PMIZ78_FAKESCRIPT))
  317. function SCRIPT_YOOE90_FAKESCRIPT() -- Slot2Button.Slot2Button
  318. local script = Instance.new('LocalScript')
  319. script.Parent = Slot2Button
  320. script.Parent.MouseButton1Click:Connect(function()
  321. if script.Parent.Parent.CurrentPos.Text == "(Current Position)" or script.Parent.Parent.CurrentPos.Text == "" then
  322. -- do nothing
  323. else
  324. script.Parent.Parent.Slot2.Text = script.Parent.Parent.CurrentPos.Text
  325. script.Parent.Parent.Slot2.TextColor3 = script.Parent.Parent.CurrentPos.TextColor3
  326. end
  327. end)
  328.  
  329. end
  330. coroutine.resume(coroutine.create(SCRIPT_YOOE90_FAKESCRIPT))
  331. function SCRIPT_QBNU66_FAKESCRIPT() -- Slot3Button.Slot3Button
  332. local script = Instance.new('LocalScript')
  333. script.Parent = Slot3Button
  334. script.Parent.MouseButton1Click:Connect(function()
  335. if script.Parent.Parent.CurrentPos.Text == "(Current Position)" or script.Parent.Parent.CurrentPos.Text == "" then
  336. -- do nothing
  337. else
  338. script.Parent.Parent.Slot3.Text = script.Parent.Parent.CurrentPos.Text
  339. script.Parent.Parent.Slot3.TextColor3 = script.Parent.Parent.CurrentPos.TextColor3
  340. end
  341. end)
  342.  
  343. end
  344. coroutine.resume(coroutine.create(SCRIPT_QBNU66_FAKESCRIPT))
  345. function SCRIPT_IGFK81_FAKESCRIPT() -- Main.DragScript
  346. local script = Instance.new('LocalScript')
  347. script.Parent = Main
  348. script.Parent.Active = true
  349. script.Parent.Draggable = true
  350.  
  351. end
  352. coroutine.resume(coroutine.create(SCRIPT_IGFK81_FAKESCRIPT))
  353.  
  354.  
  355.  
  356. -- Get your current avatar's position by simply pressing a key!
  357. -- This can be very useful if you need coordinates for teleport locations.
  358. -- After you're done writing down the coordinates, click on the part to destroy it.
  359. -- Enjoy the script! :D
  360.  
  361. -- Made by RegularVynixu#8795
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement