lenyyyyyyyyy

Untitled

Nov 29th, 2020
10,762
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Frame_2 = Instance.new("Frame")
  4. local TextButton = Instance.new("TextButton")
  5. local TextButton_2 = Instance.new("TextButton")
  6. local TextButton_3 = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local Players = game.Players
  9. local Player = Players.LocalPlayer
  10.  
  11.  
  12.  
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  17. Frame.BorderColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  18. Frame.Position = UDim2.new(0.00891530514, 0, 0.0973053873, 0)
  19. Frame.Size = UDim2.new(0, 175, 0, 9)
  20.  
  21. Frame_2.Parent = Frame
  22. Frame_2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  23. Frame_2.BorderColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  24. Frame_2.Position = UDim2.new(-0.0025132671, 0, 0.999667346, 0)
  25. Frame_2.Size = UDim2.new(0, 175, 0, 164)
  26.  
  27. TextButton.Parent = Frame_2
  28. TextButton.BackgroundColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  29. TextButton.BorderColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  30. TextButton.Position = UDim2.new(0.0482275374, 0, 0.0366036035, 0)
  31. TextButton.Size = UDim2.new(0, 159, 0, 46)
  32. TextButton.Font = Enum.Font.SourceSans
  33. TextButton.Text = "Common"
  34. TextButton.TextColor3 = Color3.new(0, 0, 0)
  35. TextButton.TextSize = 14
  36. TextButton.MouseButton1Click:Connect(function()
  37.  
  38. for i,v in pairs(game:GetDescendants()) do
  39. if v.Name == "TouchInterest" and v.Parent.Name == "Chest1" then
  40. Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  41. wait(0.9)
  42. end
  43. end
  44.  
  45. end)
  46.  
  47. TextButton_2.Parent = Frame_2
  48. TextButton_2.BackgroundColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  49. TextButton_2.BorderColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  50. TextButton_2.Position = UDim2.new(0.0482275374, 0, 0.353676766, 0)
  51. TextButton_2.Size = UDim2.new(0, 159, 0, 46)
  52. TextButton_2.Font = Enum.Font.SourceSans
  53. TextButton_2.Text = "Uncommon"
  54. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  55. TextButton_2.TextSize = 14
  56. TextButton_2.MouseButton1Click:Connect(function()
  57.  
  58. for i,v in pairs(game:GetDescendants()) do
  59. if v.Name == "TouchInterest" and v.Parent.Name == "Chest2" then
  60. Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  61. wait(0.9)
  62. end
  63. end
  64.  
  65.  
  66. end)
  67.  
  68. TextButton_3.Parent = Frame_2
  69. TextButton_3.BackgroundColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  70. TextButton_3.BorderColor3 = Color3.new(0.0941176, 0.309804, 0.713726)
  71. TextButton_3.Position = UDim2.new(0.0482275374, 0, 0.676847458, 0)
  72. TextButton_3.Size = UDim2.new(0, 159, 0, 46)
  73. TextButton_3.Font = Enum.Font.SourceSans
  74. TextButton_3.Text = "Rare"
  75. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  76. TextButton_3.TextSize = 14
  77. TextButton_3.MouseButton1Click:Connect(function()
  78.  
  79. for i,v in pairs(game:GetDescendants()) do
  80. if v.Name == "TouchInterest" and v.Parent.Name == "Chest3" then
  81. Player.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  82. wait(0.9)
  83. end
  84. end
  85.  
  86.  
  87. end)
  88.  
  89. TextLabel.Parent = Frame
  90. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  91. TextLabel.BackgroundTransparency = 1
  92. TextLabel.BorderColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  93. TextLabel.Position = UDim2.new(-0.299656123, 0, 19.1475391, 0)
  94. TextLabel.Size = UDim2.new(0, 175, 0, 27)
  95. TextLabel.Font = Enum.Font.SourceSans
  96. TextLabel.Text = "Made by OvM"
  97. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  98. TextLabel.TextSize = 14
Add Comment
Please, Sign In to add comment