Advertisement
Guest User

Norhtpoint Frontier Exploits

a guest
Aug 8th, 2019
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --[[
  2.                   Made By CNales13
  3. --]]
  4. local tnfgui = Instance.new("ScreenGui")
  5. local frame = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. local main = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local credit = Instance.new("TextLabel")
  10. local xtp = Instance.new("TextButton")
  11. local hidename = Instance.new("TextButton")
  12. local tpcolonist = Instance.new("TextButton")
  13. local tpnative = Instance.new("TextButton")
  14. local tptraveler = Instance.new("TextButton")
  15. local close = Instance.new("TextButton")
  16. --Properties:
  17. tnfgui.Name = "tnfgui"
  18. tnfgui.Parent = game.CoreGui
  19.  
  20. frame.Name = "frame"
  21. frame.Parent = tnfgui
  22. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  23. frame.Position = UDim2.new(0, 0, 0.424242437, 0)
  24. frame.Size = UDim2.new(0, 91, 0, 41)
  25. frame.Style = Enum.FrameStyle.DropShadow
  26.  
  27. open.Name = "open"
  28. open.Parent = frame
  29. open.BackgroundColor3 = Color3.new(0, 0, 0)
  30. open.BackgroundTransparency = 0.5
  31. open.Position = UDim2.new(0.0139137097, 0, 0.161528051, 0)
  32. open.Size = UDim2.new(0, 74, 0, 20)
  33. open.Font = Enum.Font.SciFi
  34. open.Text = "Open"
  35. open.TextColor3 = Color3.new(1, 1, 1)
  36. open.TextSize = 14
  37. open.MouseButton1Down:connect(function()
  38. main.Visible = true
  39. frame.Visible = false
  40. end)
  41.  
  42. main.Name = "main"
  43. main.Parent = tnfgui
  44. main.BackgroundColor3 = Color3.new(1, 1, 1)
  45. main.Position = UDim2.new(0.141570151, 0, 0.299077749, 0)
  46. main.Size = UDim2.new(0, 218, 0, 233)
  47. main.Visible = false
  48. main.Style = Enum.FrameStyle.DropShadow
  49. main.Active = true
  50. main.Draggable = true
  51.  
  52. title.Name = "title"
  53. title.Parent = main
  54. title.BackgroundColor3 = Color3.new(0, 0, 0)
  55. title.Position = UDim2.new(-0.0559843555, 0, -0.0344254635, 0)
  56. title.Size = UDim2.new(0, 225, 0, 19)
  57. title.Font = Enum.Font.SciFi
  58. title.Text = "The Northern Frontier GUI"
  59. title.TextColor3 = Color3.new(1, 1, 1)
  60. title.TextSize = 14
  61.  
  62. credit.Name = "credit"
  63. credit.Parent = main
  64. credit.BackgroundColor3 = Color3.new(0, 0, 0)
  65. credit.Position = UDim2.new(-0.0559843555, 0, 0.931239784, 0)
  66. credit.Size = UDim2.new(0, 225, 0, 19)
  67. credit.Font = Enum.Font.SciFi
  68. credit.Text = "GUI Made By CNales13/SteveHarrington"
  69. credit.TextColor3 = Color3.new(1, 1, 1)
  70. credit.TextSize = 14
  71.  
  72. xtp.Name = "xtp"
  73. xtp.Parent = main
  74. xtp.BackgroundColor3 = Color3.new(0, 0, 0)
  75. xtp.Position = UDim2.new(0.00425048545, 0, 0.142846629, 0)
  76. xtp.Size = UDim2.new(0, 200, 0, 17)
  77. xtp.Font = Enum.Font.SciFi
  78. xtp.Text = "X Teleport"
  79. xtp.TextColor3 = Color3.new(1, 1, 1)
  80. xtp.TextSize = 14
  81. xtp.MouseButton1Down:connect(function()
  82. plr = game.Players.LocalPlayer
  83. hum = plr.Character.HumanoidRootPart
  84. mouse = plr:GetMouse()
  85.  
  86. mouse.KeyDown:connect(function(key)
  87. if key == "x" then
  88. if mouse.Target then
  89. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  90. end
  91. end
  92. end)
  93. end)
  94.  
  95. hidename.Name = "hidename"
  96. hidename.Parent = main
  97. hidename.BackgroundColor3 = Color3.new(0, 0, 0)
  98. hidename.Position = UDim2.new(0.00425048545, 0, 0.297353059, 0)
  99. hidename.Size = UDim2.new(0, 200, 0, 17)
  100. hidename.Font = Enum.Font.SciFi
  101. hidename.Text = "Hide Name"
  102. hidename.TextColor3 = Color3.new(1, 1, 1)
  103. hidename.TextSize = 14
  104. hidename.MouseButton1Down:connect(function()
  105. local name = game:GetService'Players'.LocalPlayer.Name
  106. Workspace.World.MouseFilter[name][name].Head.LabelBillboardGui: Destroy()
  107. end)
  108.  
  109. tpcolonist.Name = "tpcolonist"
  110. tpcolonist.Parent = main
  111. tpcolonist.BackgroundColor3 = Color3.new(0, 0, 0)
  112. tpcolonist.Position = UDim2.new(0.00425048545, 0, 0.447567642, 0)
  113. tpcolonist.Size = UDim2.new(0, 200, 0, 17)
  114. tpcolonist.Font = Enum.Font.SciFi
  115. tpcolonist.Text = "Teleport To Colonist Base"
  116. tpcolonist.TextColor3 = Color3.new(1, 1, 1)
  117. tpcolonist.TextSize = 14
  118. tpcolonist.MouseButton1Down:connect(function()
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-606.592773, 45, -657.825439)
  120. end)
  121.  
  122. tpnative.Name = "tpnative"
  123. tpnative.Parent = main
  124. tpnative.BackgroundColor3 = Color3.new(0, 0, 0)
  125. tpnative.Position = UDim2.new(0.00425048545, 0, 0.58919853, 0)
  126. tpnative.Size = UDim2.new(0, 200, 0, 17)
  127. tpnative.Font = Enum.Font.SciFi
  128. tpnative.Text = "Teleport To Native Camp"
  129. tpnative.TextColor3 = Color3.new(1, 1, 1)
  130. tpnative.TextSize = 14
  131. tpnative.MouseButton1Down:connect(function()
  132. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1864.0199, 57, 701.627319)
  133. end)
  134.  
  135. tptraveler.Name = "tptraveler"
  136. tptraveler.Parent = main
  137. tptraveler.BackgroundColor3 = Color3.new(0, 0, 0)
  138. tptraveler.Position = UDim2.new(0.00425048545, 0, 0.739413142, 0)
  139. tptraveler.Size = UDim2.new(0, 200, 0, 17)
  140. tptraveler.Font = Enum.Font.SciFi
  141. tptraveler.Text = "Teleport To Traveler"
  142. tptraveler.TextColor3 = Color3.new(1, 1, 1)
  143. tptraveler.TextSize = 14
  144. tptraveler.MouseButton1Down:connect(function()
  145. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(268.278961, 81, -499.590393)
  146. end)
  147.  
  148. close.Name = "close"
  149. close.Parent = main
  150. close.BackgroundColor3 = Color3.new(0, 0, 0)
  151. close.Position = UDim2.new(0.960082471, 0, -0.0368760414, 0)
  152. close.Size = UDim2.new(0, 19, 0, 18)
  153. close.Font = Enum.Font.SciFi
  154. close.Text = "X"
  155. close.TextColor3 = Color3.new(1, 1, 1)
  156. close.TextSize = 14
  157. close.MouseButton1Down:connect(function()
  158. frame.Visible = true
  159. main.Visible = false
  160. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement