Advertisement
DiosTerror

[FE] POSITION CHECKER (not mine)

Apr 25th, 2019
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. -Not my script btw
  2.  
  3. -- By Guy998 on V3rmillion
  4. -- Farewell Infortality.
  5. -- Version: 2.82
  6. -- Instances:
  7. local PositionChecker = Instance.new("ScreenGui")
  8. local main = Instance.new("Frame")
  9. local check = Instance.new("TextButton")
  10. local visible = Instance.new("TextButton")
  11. local output = Instance.new("Frame")
  12. local outtext = Instance.new("TextLabel")
  13. --Properties:
  14. PositionChecker.Name = "PositionChecker"
  15. PositionChecker.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16.  
  17. main.Name = "main"
  18. main.Parent = PositionChecker
  19. main.BackgroundColor3 = Color3.new(1, 1, 1)
  20. main.BorderColor3 = Color3.new(1, 1, 1)
  21. main.Position = UDim2.new(0.85425663, 0, 0.433006525, 0)
  22. main.Size = UDim2.new(0, 144, 0, 81)
  23.  
  24. check.Name = "check"
  25. check.Parent = main
  26. check.BackgroundColor3 = Color3.new(1, 1, 1)
  27. check.BorderColor3 = Color3.new(1, 1, 1)
  28. check.Size = UDim2.new(0, 144, 0, 81)
  29. check.Font = Enum.Font.Fantasy
  30. check.Text = "Check"
  31. check.TextColor3 = Color3.new(0, 0, 0)
  32. check.TextSize = 25
  33. check.TextWrapped = true
  34.  
  35. visible.Name = "visible"
  36. visible.Parent = PositionChecker
  37. visible.BackgroundColor3 = Color3.new(0.321569, 0.65098, 1)
  38. visible.BorderColor3 = Color3.new(0.321569, 0.65098, 1)
  39. visible.Position = UDim2.new(0, 0, 0.918300629, 0)
  40. visible.Size = UDim2.new(0, 200, 0, 50)
  41. visible.Font = Enum.Font.SciFi
  42. visible.Text = "Open"
  43. visible.TextColor3 = Color3.new(0, 0, 0)
  44. visible.TextSize = 25
  45.  
  46. output.Name = "output"
  47. output.Parent = PositionChecker
  48. output.BackgroundColor3 = Color3.new(1, 1, 1)
  49. output.BorderColor3 = Color3.new(1, 1, 1)
  50. output.Position = UDim2.new(0.854692221, 0, 0.269607842, 0)
  51. output.Size = UDim2.new(0, 144, 0, 100)
  52.  
  53. outtext.Name = "outtext"
  54. outtext.Parent = output
  55. outtext.BackgroundColor3 = Color3.new(1, 1, 1)
  56. outtext.BorderColor3 = Color3.new(1, 1, 1)
  57. outtext.Size = UDim2.new(0, 144, 0, 100)
  58. outtext.Font = Enum.Font.SourceSans
  59. outtext.Text = "Ouput is currently Clear"
  60. outtext.TextColor3 = Color3.new(0, 0, 0)
  61. outtext.TextScaled = true
  62. outtext.TextSize = 14
  63. outtext.TextWrapped = true
  64. outtext.TextXAlignment = Enum.TextXAlignment.Left
  65. outtext.TextYAlignment = Enum.TextYAlignment.Top
  66. main.Visible = false
  67. output.Visible = false
  68. -- Scripts:
  69. vis = false
  70. local oText = "Open"
  71. local cText = "Close"
  72. visible.MouseButton1Down:connect(function()
  73. if vis == false then
  74. vis = true
  75. main.Visible = true
  76. output.Visible = false
  77. visible.Text = cText
  78. elseif vis == true then
  79. vis = false
  80. main.Visible = false
  81. output.Visible = false
  82. visible.Text = oText
  83. end
  84. end)
  85. check.MouseButton1Down:connect(function()
  86. print(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  87. end)
  88. Player = game.Players.LocalPlayer
  89. mouse = Player:GetMouse()
  90.  
  91. function onKeyDown(key)
  92. key = key:lower()
  93. if key == "q" then
  94. if vis == false then
  95. main.Visible = true
  96. visible.Text = cText
  97. vis = true
  98. elseif vis == true then
  99. main.Visible = false
  100. visible.Text = oText
  101. vis = false
  102. end
  103. end
  104. end
  105. mouse.KeyDown:connect(onKeyDown)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement