Advertisement
DashaBars

Ro piece

Feb 13th, 2021
1,654
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextButton = Instance.new("TextButton")
  4. local LoginFrame = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local TextButton_2 = Instance.new("TextButton")
  7. local TextButton_3 = Instance.new("TextButton")
  8. local TextButton_4 = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Position = UDim2.new(0.108333334, 0, 0.362549812, 0)
  16. Frame.Size = UDim2.new(0, 100, 0, 44)
  17. Frame.Active = true
  18. Frame.Draggable = true
  19.  
  20. TextButton.Parent = Frame
  21. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextButton.Position = UDim2.new(0.200000003, 0, 0.223485768, 0)
  23. TextButton.Size = UDim2.new(0, 60, 0, 27)
  24. TextButton.Font = Enum.Font.SourceSans
  25. TextButton.Text = "Open/Close"
  26. TextButton.TextColor3 = Color3.new(0, 0, 0)
  27. TextButton.TextSize = 14
  28.  
  29. LoginFrame.Name = "LoginFrame"
  30. LoginFrame.Parent = ScreenGui
  31. LoginFrame.BackgroundColor3 = Color3.new(1, 0, 0)
  32. LoginFrame.Position = UDim2.new(0.435185194, 0, 0.211155385, 0)
  33. LoginFrame.Size = UDim2.new(0, 267, 0, 120)
  34. LoginFrame.Visible = false
  35. LoginFrame.Active = true
  36. LoginFrame.Draggable = true
  37.  
  38. TextLabel.Parent = LoginFrame
  39. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  40. TextLabel.Size = UDim2.new(0, 267, 0, 22)
  41. TextLabel.Font = Enum.Font.SourceSans
  42. TextLabel.Text = "Ro Piece Gui"
  43. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  44. TextLabel.TextSize = 14
  45.  
  46. TextButton_2.Parent = LoginFrame
  47. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  48. TextButton_2.Position = UDim2.new(0, 0, 0.341666639, 0)
  49. TextButton_2.Size = UDim2.new(0, 87, 0, 23)
  50. TextButton_2.Font = Enum.Font.SourceSans
  51. TextButton_2.Text = "Farm Marco"
  52. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  53. TextButton_2.TextSize = 14
  54.  
  55. TextButton_3.Parent = LoginFrame
  56. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  57. TextButton_3.Position = UDim2.new(0.674157321, 0, 0.366666675, 0)
  58. TextButton_3.Size = UDim2.new(0, 87, 0, 20)
  59. TextButton_3.Font = Enum.Font.SourceSans
  60. TextButton_3.Text = "Tp To DF"
  61. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  62. TextButton_3.TextSize = 14
  63.  
  64. TextButton_4.Parent = LoginFrame
  65. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  66. TextButton_4.Position = UDim2.new(0.344569296, 0, 0.633333325, 0)
  67. TextButton_4.Size = UDim2.new(0, 82, 0, 29)
  68. TextButton_4.Font = Enum.Font.SourceSans
  69. TextButton_4.Text = "Tp Chests"
  70. TextButton_4.TextColor3 = Color3.new(0, 0, 0)
  71. TextButton_4.TextSize = 14
  72. -- Scripts:
  73. TextButton.MouseButton1Down:Connect(function()
  74. LoginFrame.Visible = not LoginFrame.Visible
  75.  
  76. end)
  77.  
  78. TextButton_2.MouseButton1Down:Connect(function()
  79. game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart.CFrame = CFrame.new(-147, 131, -5841)
  80.  
  81. for i,v in pairs (game.Workspace.boards:GetChildren()) do
  82. if v.boss.Value == "marco" then
  83. v.Part.CFrame = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart.CFrame
  84. end
  85. end
  86.  
  87. end)
  88.  
  89. TextButton_3.MouseButton1Down:Connect(function()
  90. for _,v in pairs(game.Workspace.buythings:GetDescendants()) do
  91. if v:FindFirstChild("aura") and v:FindFirstChild("remove") then
  92. print(v.Name)
  93. game.Players.LocalPlayer.Character.HumanoidRootPart.Position = v.Position
  94. end
  95. end
  96.  
  97. end)
  98.  
  99. TextButton_4.MouseButton1Down:Connect(function()
  100. for _,v in pairs(game.Workspace.treasure:GetDescendants()) do
  101. if v:FindFirstChild("ClickDetector") then
  102. v.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-5)
  103. end
  104. end
  105.  
  106. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement