Advertisement
Nightmaare420

OOF

Jun 8th, 2019
1,062
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextBox = Instance.new("TextBox")
  4. local TextButton = Instance.new("TextButton")
  5. local TextBox_2 = Instance.new("TextBox")
  6. local TextButton_2 = Instance.new("TextButton")
  7. local TextButton_3 = Instance.new("TextButton")
  8. --Properties:
  9. ScreenGui.Parent = game.CoreGui
  10. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11.  
  12. Frame.Parent = ScreenGui
  13. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  14. Frame.Position = UDim2.new(0.316239327, 0, 0.131531507, 0)
  15. Frame.Size = UDim2.new(0, 334, 0, 409)
  16. Frame.Draggable = true
  17.  
  18. TextBox.Parent = Frame
  19. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  20. TextBox.BackgroundTransparency = 100
  21. TextBox.Position = UDim2.new(0, 0, 0.0584415719, 0)
  22. TextBox.Size = UDim2.new(0, 334, 0, 65)
  23. TextBox.Text = "Nigger GUI"
  24. TextBox.TextColor3 = Color3.new(1, 1, 1)
  25. TextBox.TextScaled = true
  26. TextBox.TextSize = 30
  27. TextBox.TextWrapped = true
  28. TextBox.TextStrokeColor3 = Color3.new(1, 1, 1)
  29.  
  30.  
  31. TextButton.Parent = Frame
  32. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  33. TextButton.BorderColor3 = Color3.new(1, 1, 1)
  34. TextButton.Position = UDim2.new(0.198240697, 0, 0.344195545, 0)
  35. TextButton.Size = UDim2.new(0, 200, 0, 50)
  36. TextButton.Text = "Autofarm Chest"
  37. TextButton.TextColor3 = Color3.new(1, 1, 1)
  38. TextButton.TextScaled = true
  39. TextButton.TextSize = 14
  40. TextButton.MouseButton1Down:connect(function()
  41. while wait() do
  42. for _,a in pairs(game.Workspace:GetChildren()) do
  43. if string.find(a.Name,"Chest") then
  44. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = a.CFrame
  45. end
  46. end
  47. end
  48. end)
  49.  
  50. TextBox_2.Parent = Frame
  51. TextBox_2.BackgroundColor3 = Color3.new(0, 0, 0)
  52. TextBox_2.Position = UDim2.new(0.19760479, 0, 0.772616148, 0)
  53. TextBox_2.Size = UDim2.new(0, 200, 0, 50)
  54. TextBox_2.Text = "Made by: Nightmaare#6969"
  55. TextBox_2.TextColor3 = Color3.new(1, 1, 1)
  56. TextBox_2.TextScaled = true
  57. TextBox_2.TextSize = 14
  58. TextBox_2.TextWrapped = true
  59.  
  60.  
  61. TextButton_2.Parent = Frame
  62. TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
  63. TextButton_2.BorderColor3 = Color3.new(1, 1, 1)
  64. TextButton_2.Position = UDim2.new(0.904191613, 0, 0, 0)
  65. TextButton_2.Size = UDim2.new(0, 32, 0, 20)
  66. TextButton_2.Text = "X"
  67. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  68. TextButton_2.TextScaled = true
  69. TextButton_2.TextSize = 20
  70. TextButton_2.TextWrapped = true
  71. TextButton_2.MouseButton1Down:connect(function()
  72. Frame.Visible = false
  73. end)
  74.  
  75. TextButton_3.Parent = Frame
  76. TextButton_3.BackgroundColor3 = Color3.new(0, 0, 0)
  77. TextButton_3.BorderColor3 = Color3.new(1, 1, 1)
  78. TextButton_3.Position = UDim2.new(0.198240697, 0, 0.564172983, 0)
  79. TextButton_3.Size = UDim2.new(0, 200, 0, 50)
  80. TextButton_3.Font = Enum.Font.SourceSans
  81. TextButton_3.Text = "Bring Fruit (Buggy, SpamButton)"
  82. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  83. TextButton_3.TextScaled = true
  84. TextButton_3.TextSize = 20
  85. TextButton_3.TextWrapped = true
  86. TextButton_3.MouseButton1Down:connect(function()
  87. local a = game.Players.LocalPlayer.Character.HumanoidRootPart
  88. local b = a.CFrame
  89. for i,v in pairs(game.Workspace["_WorldOrigin"]:GetDescendants()) do
  90. if v.Name == "Fruit" and v.Parent:IsA("Model") and v.Parent.Name == "Model" then
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
  92. wait(0.1)
  93. end
  94. end
  95. a.CFrame = b
  96. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement