Advertisement
RazHack_YT

Untitled

May 22nd, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. -- LoW Products
  2.  
  3.  
  4. -- Objects
  5.  
  6. local DoomGui = Instance.new("ScreenGui")
  7. local tb = Instance.new("Frame")
  8. local wd = Instance.new("Frame")
  9. local yy = Instance.new("TextButton")
  10. local gg = Instance.new("TextButton")
  11. local bb = Instance.new("TextButton")
  12. local rr = Instance.new("TextButton")
  13. local title = Instance.new("TextLabel")
  14.  
  15. -- Properties
  16.  
  17. DoomGui.Name = "DoomGui"
  18. DoomGui.Parent = game.CoreGui
  19.  
  20. tb.Name = "tb"
  21. tb.Parent = DoomGui
  22. tb.BackgroundColor3 = Color3.new(0.0823529, 0.0784314, 0.0823529)
  23. tb.BorderSizePixel = 0
  24. tb.Position = UDim2.new(-0, 0,0.484, 0)
  25. tb.Size = UDim2.new(0, 130, 0, 19)
  26. tb.Draggable = true
  27.  
  28. wd.Name = "wd"
  29. wd.Parent = tb
  30. wd.BackgroundColor3 = Color3.new(0.176471, 0.172549, 0.176471)
  31. wd.BorderSizePixel = 0
  32. wd.Position = UDim2.new(0, 0, 1, 0)
  33. wd.Size = UDim2.new(0, 130, 0, 114)
  34.  
  35. yy.Name = "yy"
  36. yy.Parent = wd
  37. yy.BackgroundColor3 = Color3.new(0.960784, 0.803922, 0.188235)
  38. yy.BorderSizePixel = 0
  39. yy.Position = UDim2.new(0.100000024, 0, 0.0865384638, 0)
  40. yy.Size = UDim2.new(0, 104, 0, 23)
  41. yy.Font = Enum.Font.SourceSans
  42. yy.Text = "Yellow"
  43. yy.TextColor3 = Color3.new(1, 1, 1)
  44. yy.TextScaled = true
  45. yy.TextSize = 14
  46. yy.TextStrokeTransparency = 0.5
  47. yy.TextWrapped = true
  48.  
  49. gg.Name = "gg"
  50. gg.Parent = wd
  51. gg.BackgroundColor3 = Color3.new(0.294118, 0.592157, 0.294118)
  52. gg.BorderSizePixel = 0
  53. gg.Position = UDim2.new(0.100000024, 0, 0.290148437, 0)
  54. gg.Size = UDim2.new(0, 104, 0, 23)
  55. gg.Font = Enum.Font.SourceSans
  56. gg.Text = "Green"
  57. gg.TextColor3 = Color3.new(1, 1, 1)
  58. gg.TextScaled = true
  59. gg.TextSize = 14
  60. gg.TextStrokeTransparency = 0.5
  61. gg.TextWrapped = true
  62.  
  63. bb.Name = "bb"
  64. bb.Parent = wd
  65. bb.BackgroundColor3 = Color3.new(0.0509804, 0.411765, 0.67451)
  66. bb.BorderSizePixel = 0
  67. bb.Position = UDim2.new(0.100000024, 0, 0.49375838, 0)
  68. bb.Size = UDim2.new(0, 104, 0, 23)
  69. bb.Font = Enum.Font.SourceSans
  70. bb.Text = "Blue"
  71. bb.TextColor3 = Color3.new(1, 1, 1)
  72. bb.TextScaled = true
  73. bb.TextSize = 14
  74. bb.TextStrokeTransparency = 0.5
  75. bb.TextWrapped = true
  76.  
  77. rr.Name = "rr"
  78. rr.Parent = wd
  79. rr.BackgroundColor3 = Color3.new(0.768628, 0.156863, 0.109804)
  80. rr.BorderSizePixel = 0
  81. rr.Position = UDim2.new(0.100000024, 0, 0.688596487, 0)
  82. rr.Size = UDim2.new(0, 104, 0, 23)
  83. rr.Font = Enum.Font.SourceSans
  84. rr.Text = "Red"
  85. rr.TextColor3 = Color3.new(1, 1, 1)
  86. rr.TextScaled = true
  87. rr.TextSize = 14
  88. rr.TextStrokeTransparency = 0.5
  89. rr.TextWrapped = true
  90.  
  91. title.Name = "title"
  92. title.Parent = tb
  93. title.BackgroundColor3 = Color3.new(1, 1, 1)
  94. title.BackgroundTransparency = 1
  95. title.Size = UDim2.new(0, 130, 0, 19)
  96. title.Font = Enum.Font.SourceSans
  97. title.Text = "DoomGui"
  98. title.TextColor3 = Color3.new(1, 1, 1)
  99. title.TextScaled = true
  100. title.TextSize = 14
  101. title.TextWrapped = true
  102.  
  103. -- Scripts
  104.  
  105. function tp(x,y,z)
  106. local me = game.Players.LocalPlayer.Character
  107. me:MoveTo(Vector3.new(x, y, z))
  108. end
  109.  
  110.  
  111. yy.MouseButton1Click:connect(function()
  112. tp(131.266, 24.799, -1.551)
  113. end)
  114.  
  115. bb.MouseButton1Click:connect(function()
  116. tp(-0.413, 24.799, 131.2)
  117. end)
  118.  
  119. gg.MouseButton1Click:connect(function()
  120. tp(-0.413, 24.799, -131.2)
  121. end)
  122.  
  123. rr.MouseButton1Click:connect(function()
  124. tp(-131.266, 24.799, -1.551)
  125. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement