Advertisement
Guest User

Water World GUI

a guest
Sep 16th, 2019
1,399
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local Frame_2 = Instance.new("Frame")
  7. local TextButton = Instance.new("TextButton")
  8. local TextBox = Instance.new("TextBox")
  9. local TextLabel = Instance.new("TextLabel")
  10. local OnOff = Instance.new("TextLabel")
  11. local TextLabel_2 = Instance.new("TextLabel")
  12. --Properties:
  13. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.new(0, 0.603922, 0.905882)
  17. Frame.BorderSizePixel = 0
  18. Frame.Position = UDim2.new(0.1393608, 0, 0.581081033, 0)
  19. Frame.Size = UDim2.new(0, 346, 0, 37)
  20.  
  21. Frame_2.Parent = Frame
  22. Frame_2.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Frame_2.BorderSizePixel = 0
  24. Frame_2.Position = UDim2.new(0, 0, 0.972973824, 0)
  25. Frame_2.Size = UDim2.new(0, 346, 0, 119)
  26.  
  27. TextButton.Parent = Frame_2
  28. TextButton.BackgroundColor3 = Color3.new(0, 0.603922, 0.905882)
  29. TextButton.BorderSizePixel = 0
  30. TextButton.Position = UDim2.new(0.205202326, 0, 0.255431473, 0)
  31. TextButton.Size = UDim2.new(0, 200, 0, 33)
  32. TextButton.Font = Enum.Font.GothamBold
  33. TextButton.Text = "Start Farming"
  34. TextButton.TextColor3 = Color3.new(0, 0, 0)
  35. TextButton.TextSize = 14
  36.  
  37. TextBox.Parent = Frame_2
  38. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  39. TextBox.BackgroundTransparency = 1
  40. TextBox.BorderColor3 = Color3.new(0, 0.603922, 0.905882)
  41. TextBox.BorderSizePixel = 3
  42. TextBox.Position = UDim2.new(0.210982665, 0, 0.402439028, 0)
  43. TextBox.Size = UDim2.new(0, 200, 0, 33)
  44. TextBox.ZIndex = 0
  45. TextBox.Font = Enum.Font.GothamSemibold
  46. TextBox.MultiLine = true
  47. TextBox.PlaceholderText = "0"
  48. TextBox.Text = ""
  49. TextBox.TextColor3 = Color3.new(0, 0, 0)
  50. TextBox.TextSize = 14
  51.  
  52. TextLabel.Parent = TextBox
  53. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  54. TextLabel.BorderSizePixel = 0
  55. TextLabel.Position = UDim2.new(-0.00499999989, 0, 0.669340491, 0)
  56. TextLabel.Size = UDim2.new(0, 200, 0, 17)
  57. TextLabel.Font = Enum.Font.GothamBold
  58. TextLabel.Text = "Once Enabled You Can't Disable"
  59. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  60. TextLabel.TextSize = 14
  61.  
  62. OnOff.Name = "OnOff"
  63. OnOff.Parent = TextBox
  64. OnOff.BackgroundColor3 = Color3.new(1, 1, 1)
  65. OnOff.BorderSizePixel = 0
  66. OnOff.Position = UDim2.new(-0.00999999978, 0, -1.14818966, 0)
  67. OnOff.Size = UDim2.new(0, 200, 0, 11)
  68. OnOff.Font = Enum.Font.GothamBold
  69. OnOff.Text = "Not Farming"
  70. OnOff.TextColor3 = Color3.new(1, 0, 0)
  71. OnOff.TextSize = 14
  72. OnOff.TextStrokeColor3 = Color3.new(0, 0.603922, 0.905882)
  73.  
  74. TextLabel_2.Parent = Frame
  75. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  76. TextLabel_2.BorderSizePixel = 0
  77. TextLabel_2.Position = UDim2.new(0.222543359, 0, 3.64864945, 0)
  78. TextLabel_2.Size = UDim2.new(0, 189, 0, 3)
  79. TextLabel_2.Font = Enum.Font.GothamBold
  80. TextLabel_2.Text = "Made By ziptie.entity#9917"
  81. TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
  82. TextLabel_2.TextSize = 14
  83. -- Scripts:
  84. function SCRIPT_HXYW75_FAKESCRIPT() -- TextButton.LocalScript
  85. local script = Instance.new('LocalScript')
  86. script.Parent = TextButton
  87. local onoff = script.Parent.Parent.TextBox.OnOff
  88. script.Parent.MouseButton1Click:Connect(function()
  89. onoff.TextColor3 = Color3.new(0, 255, 0)
  90. onoff.Text = "Farming"
  91. print("Started Farming")
  92. while wait(3) do
  93. for i,v in pairs (game.Workspace:GetDescendants()) do
  94. if v.Name == "P" and v:IsA("MeshPart") then
  95. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  96. end
  97. end
  98. end
  99. end)
  100.  
  101. end
  102. coroutine.resume(coroutine.create(SCRIPT_HXYW75_FAKESCRIPT))
  103. function SCRIPT_ITLB68_FAKESCRIPT() -- Frame.LocalScript
  104. local script = Instance.new('LocalScript')
  105. script.Parent = Frame
  106. local me = script.Parent
  107. me.Active = true
  108. me.Selectable = true
  109. me.Draggable = true
  110.  
  111. end
  112. coroutine.resume(coroutine.create(SCRIPT_ITLB68_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement