Advertisement
Guest User

Untitled

a guest
May 16th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local DontKnowTheName = Instance.new("ScreenGui")
  7. local Pretentious = Instance.new("Frame")
  8. local Input = Instance.new("TextButton")
  9. local Close = Instance.new("TextButton")
  10. local Text = Instance.new("TextLabel")
  11. local Open = Instance.new("TextButton")
  12. local Delete = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. DontKnowTheName.Name = "DontKnowTheName"
  17. DontKnowTheName.Parent = game.Players.LocalPlayer.PlayerGui
  18.  
  19. Pretentious.Name = "Pretentious"
  20. Pretentious.Parent = DontKnowTheName
  21. Pretentious.Active = true
  22. Pretentious.Draggable = true
  23. Pretentious.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Pretentious.BorderColor3 = Color3.new(0, 0, 0)
  25. Pretentious.BorderSizePixel = 3
  26. Pretentious.Position = UDim2.new(0.214108914, 0, 0.467971563, 0)
  27. Pretentious.Size = UDim2.new(0, 235, 0, 54)
  28.  
  29. Input.Name = "Input"
  30. Input.Parent = Pretentious
  31. Input.BackgroundColor3 = Color3.new(1, 0, 0)
  32. Input.BorderColor3 = Color3.new(0, 0, 0)
  33. Input.BorderSizePixel = 3
  34. Input.Position = UDim2.new(0, 0, 0.370370358, 0)
  35. Input.Size = UDim2.new(0, 235, 0, 35)
  36. Input.Font = Enum.Font.Code
  37. Input.Text = "Press this then F9 for a surprise"
  38. Input.TextColor3 = Color3.new(1, 1, 1)
  39. Input.TextSize = 17
  40. Input.Active = true
  41. Input.TextWrapped = true
  42.  
  43. Close.Name = "Close"
  44. Close.Parent = Pretentious
  45. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  46. Close.BackgroundTransparency = 1
  47. Close.BorderSizePixel = 0
  48. Close.Position = UDim2.new(0.940425515, 0, 0, 0)
  49. Close.Size = UDim2.new(0, 14, 0, 13)
  50. Close.Font = Enum.Font.SourceSansBold
  51. Close.Text = "X"
  52. Close.TextColor3 = Color3.new(0, 0, 0)
  53. Close.TextScaled = true
  54. Close.TextSize = 14
  55. Close.TextWrapped = true
  56.  
  57. Text.Name = "Text"
  58. Text.Parent = Pretentious
  59. Text.BackgroundColor3 = Color3.new(1, 1, 1)
  60. Text.BackgroundTransparency = 1
  61. Text.BorderSizePixel = 0
  62. Text.Size = UDim2.new(0, 235, 0, 13)
  63. Text.Font = Enum.Font.SourceSans
  64. Text.Text = "Just hold and drag!"
  65. Text.Active = true
  66. Text.TextSize = 14
  67.  
  68. Open.Name = "Open"
  69. Open.Parent = DontKnowTheName
  70. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  71. Open.Position = UDim2.new(0.0216584168, 0, 0.750889719, 0)
  72. Open.Size = UDim2.new(0, 81, 0, 31)
  73. Open.Style = Enum.ButtonStyle.RobloxRoundButton
  74. Open.Font = Enum.Font.SourceSans
  75. Open.Text = "Open"
  76. Open.TextColor3 = Color3.new(0, 0, 0)
  77. Open.TextSize = 14
  78.  
  79. Delete.Name = "Delete"
  80. Delete.Parent = DontKnowTheName
  81. Delete.BackgroundColor3 = Color3.new(1, 1, 1)
  82. Delete.Position = UDim2.new(0.021658415, 0, 0.794780552, 0)
  83. Delete.Size = UDim2.new(0, 81, 0, 31)
  84. Delete.Style = Enum.ButtonStyle.RobloxRoundButton
  85. Delete.Font = Enum.Font.SourceSans
  86. Delete.Text = "Delete"
  87. Delete.TextColor3 = Color3.new(0, 0, 0)
  88. Delete.TextSize = 14
  89.  
  90. -- Scripts
  91.  
  92. Delete.MouseButton1Down:connect(function()
  93. game.Players.LocalPlayer.PlayerGui.DontKnowTheName:remove()
  94. end)
  95.  
  96. Open.MouseButton1Down:connect(function()
  97. Open.Visible = false
  98. Pretentious.Visible = true
  99. end)
  100.  
  101. Close.MouseButton1Down:connect(function()
  102. Pretentious.Visible = false
  103. Open.Visible = true
  104. end)
  105.  
  106. Input.MouseButton1Down:connect(function()
  107. local Player = game:GetService'Players'
  108. local children = Player:GetChildren()
  109. print ("List of Users and Their Respected Positions") print (" ")
  110.  
  111. for i = 1, #children do
  112. local X = children[i].Character.HumanoidRootPart.Position
  113. local Y = children[i].Name
  114. print (Y.." =") warn ("x = ("..X.x..") y = ("..X.y..") z = ("..X.z..")") print (" ")
  115. end
  116. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement