Advertisement
Guest User

gamer time

a guest
Nov 12th, 2019
1,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local awesome = Instance.new("ScreenGui")
  5. local main = Instance.new("ImageLabel")
  6. local top = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local cords = Instance.new("TextLabel")
  9. local line = Instance.new("Frame")
  10. local generate = Instance.new("TextButton")
  11. local cordsbtn = Instance.new("TextButton")
  12. --Properties:
  13. awesome.Name = "awesome"
  14. awesome.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = awesome
  18. main.BackgroundColor3 = Color3.new(1, 1, 1)
  19. main.BackgroundTransparency = 1
  20. main.Position = UDim2.new(0.0787977427, 0, 0.36796537, 0)
  21. main.Size = UDim2.new(0, 217, 0, 196)
  22. main.Image = "rbxassetid://2851926732"
  23. main.ImageColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  24. main.ScaleType = Enum.ScaleType.Slice
  25. main.SliceCenter = Rect.new(12, 12, 12, 12)
  26.  
  27. top.Name = "top"
  28. top.Parent = main
  29. top.BackgroundColor3 = Color3.new(0.172549, 0.172549, 0.172549)
  30. top.BorderSizePixel = 0
  31. top.Size = UDim2.new(0, 217, 0, 29)
  32.  
  33. TextLabel.Parent = top
  34. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  35. TextLabel.BackgroundTransparency = 1
  36. TextLabel.Position = UDim2.new(0.0368663594, 0, 0, 0)
  37. TextLabel.Size = UDim2.new(0, 200, 0, 29)
  38. TextLabel.Font = Enum.Font.SourceSansBold
  39. TextLabel.Text = "Teleport script generator"
  40. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  41. TextLabel.TextSize = 14
  42.  
  43. cords.Name = "cords"
  44. cords.Parent = main
  45. cords.BackgroundColor3 = Color3.new(1, 1, 1)
  46. cords.BackgroundTransparency = 1
  47. cords.Position = UDim2.new(0, 0, 0.147959188, 0)
  48. cords.Size = UDim2.new(0, 217, 0, 29)
  49. cords.Font = Enum.Font.SourceSans
  50. cords.Text = "0,0,0"
  51. cords.TextColor3 = Color3.new(1, 1, 1)
  52. cords.TextScaled = true
  53. cords.TextSize = 14
  54. cords.TextWrapped = true
  55.  
  56. line.Name = "line"
  57. line.Parent = main
  58. line.BackgroundColor3 = Color3.new(1, 1, 1)
  59. line.Position = UDim2.new(0.0276497696, 0, 0.331632644, 0)
  60. line.Size = UDim2.new(0, 202, 0, 1)
  61.  
  62. generate.Name = "generate"
  63. generate.Parent = main
  64. generate.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  65. generate.Position = UDim2.new(0.170506909, 0, 0.5, 0)
  66. generate.Size = UDim2.new(0, 143, 0, 26)
  67. generate.Font = Enum.Font.SourceSansBold
  68. generate.Text = "Generate Script"
  69. generate.TextColor3 = Color3.new(1, 1, 1)
  70. generate.TextSize = 14
  71.  
  72. cordsbtn.Name = "cordsbtn"
  73. cordsbtn.Parent = main
  74. cordsbtn.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  75. cordsbtn.Position = UDim2.new(0.170506909, 0, 0.71938777, 0)
  76. cordsbtn.Size = UDim2.new(0, 143, 0, 26)
  77. cordsbtn.Font = Enum.Font.SourceSansBold
  78. cordsbtn.Text = "Copy cords"
  79. cordsbtn.TextColor3 = Color3.new(1, 1, 1)
  80. cordsbtn.TextSize = 14
  81. -- Scripts:
  82.  
  83. main.Active = true
  84. main.Draggable = true
  85.  
  86.  
  87. game:GetService"RunService".RenderStepped:Connect(function()
  88. cords.Text = tostring(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  89. end)
  90.  
  91. generate.MouseButton1Click:connect(function()
  92. local pos = "CFrame.new(" .. tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) .. ")"
  93. setclipboard("local oh1 = " .. pos .. "\nlocal oh2 = game:GetService(\"Players\")\nlocal oh3 = oh2.LocalPlayer.Character.HumanoidRootPart\n\n\noh3.CFrame = oh1\n\n-- end of script")
  94. end)
  95.  
  96. cordsbtn.MouseButton1Click:connect(function()
  97. local pos = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  98. setclipboard(pos)
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement