Advertisement
Guest User

Untitled

a guest
Dec 8th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.11 KB | None | 0 0
  1. --Made by Crim
  2.  
  3. local Miner = Instance.new("ScreenGui")
  4. local OpenFrame = Instance.new("Frame")
  5. local OpenButton = Instance.new("TextButton")
  6. local Main = Instance.new("Frame")
  7. local TpButton = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local CloseButton = Instance.new("TextButton")
  10.  
  11.  
  12.  
  13. Miner.Name = "Miner"
  14. Miner.Parent = game.CoreGui
  15. Miner.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. OpenFrame.Name = "OpenFrame"
  18. OpenFrame.Parent = Miner
  19. OpenFrame.Active = true
  20. OpenFrame.BackgroundColor3 = Color3.new(0.188235, 0, 0.419608)
  21. OpenFrame.BackgroundTransparency = 0.20000000298023
  22. OpenFrame.Position = UDim2.new(0, 0, 0.533994317, 0)
  23. OpenFrame.Size = UDim2.new(0, 169, 0, 49)
  24.  
  25. OpenButton.Name = "OpenButton"
  26. OpenButton.Parent = OpenFrame
  27. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  28. OpenButton.BackgroundTransparency = 1
  29. OpenButton.Position = UDim2.new(0.0946745872, 0, 0.142857134, 0)
  30. OpenButton.Size = UDim2.new(0, 137, 0, 34)
  31. OpenButton.Font = Enum.Font.Fantasy
  32. OpenButton.Text = "Open"
  33. OpenButton.TextColor3 = Color3.new(0, 0, 0)
  34. OpenButton.TextSize = 25
  35. OpenButton.MouseButton1Down:Connect(function()
  36. OpenFrame.Visible = false
  37. Main.Visible = true
  38. end)
  39.  
  40.  
  41. Main.Name = "Main"
  42. Main.Parent = Miner
  43. Main.BackgroundColor3 = Color3.new(0.12549, 0, 0.301961)
  44. Main.BackgroundTransparency = 0.40000000596046
  45. Main.Position = UDim2.new(0.273809552, 0, 0.202549562, 0)
  46. Main.Size = UDim2.new(0, 224, 0, 212)
  47. Main.Visible = false
  48. Main.Active = true
  49. Main.Draggable = true
  50.  
  51.  
  52. TpButton.Name = "TpButton"
  53. TpButton.Parent = Main
  54. TpButton.BackgroundColor3 = Color3.new(0.152941, 0, 0.243137)
  55. TpButton.BackgroundTransparency = 0.60000002384186
  56. TpButton.Position = UDim2.new(0, 0, 0.735849142, 0)
  57. TpButton.Size = UDim2.new(0, 223, 0, 47)
  58. TpButton.Font = Enum.Font.Fantasy
  59. TpButton.Text = "Tp to Toe"
  60. TpButton.TextColor3 = Color3.new(0.717647, 0, 1)
  61. TpButton.TextSize = 25
  62. TpButton.MouseButton1Down:Connect(function()
  63. --made by Crim#3366
  64.  
  65. local tp = game.workspace:GetChildren()
  66.  
  67. for i,v in pairs(tp) do
  68. if v.Name == "Market" then
  69. if v:FindFirstChild("Toe") then
  70. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Toe.CFrame
  71. end
  72. end
  73. end
  74.  
  75.  
  76. end)
  77.  
  78.  
  79. TextLabel.Archivable = false
  80. TextLabel.Parent = Main
  81. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  82. TextLabel.BackgroundTransparency = 1
  83. TextLabel.Position = UDim2.new(0.00446428591, 0, 0.169811323, 0)
  84. TextLabel.Size = UDim2.new(0, 223, 0, 38)
  85. TextLabel.Font = Enum.Font.SourceSans
  86. TextLabel.Text = "Made By Crim#3366"
  87. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  88. TextLabel.TextSize = 25
  89.  
  90. CloseButton.Name = "CloseButton"
  91. CloseButton.Parent = Main
  92. CloseButton.BackgroundColor3 = Color3.new(1, 1, 1)
  93. CloseButton.BackgroundTransparency = 1
  94. CloseButton.Position = UDim2.new(0.834821284, 0, 0, 0)
  95. CloseButton.Size = UDim2.new(0, 36, 0, 36)
  96. CloseButton.Font = Enum.Font.Fantasy
  97. CloseButton.Text = "X"
  98. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  99. CloseButton.TextSize = 20
  100. CloseButton.MouseButton1Down:Connect(function()
  101. Main.Visible = false
  102. OpenFrame.Visible = true
  103. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement