Advertisement
Juanister531

BABY SIMULATOR SCRIPT

Apr 21st, 2019
16,875
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 1 0
  1.  
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local TextButton = Instance.new("TextButton")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local AutoBabyBottle = Instance.new("TextButton")
  9. local AutoAttack = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.329076618, 0, 0.293375403, 0)
  17. Frame.Size = UDim2.new(0, 259, 0, 241)
  18. Frame.Style = Enum.FrameStyle.RobloxSquare
  19. Frame.Draggable = true
  20. Frame.Active =true
  21.  
  22. TextButton.Parent = Frame
  23. TextButton.BackgroundColor3 = Color3.new(0.0313726, 0.0705882, 0.443137)
  24. TextButton.BorderColor3 = Color3.new(0.0196078, 0.0313726, 0.207843)
  25. TextButton.Position = UDim2.new(-0.0308880303, 0, -0.0331950225, 0)
  26. TextButton.Size = UDim2.new(0, 258, 0, 50)
  27. TextButton.Font = Enum.Font.SourceSans
  28. TextButton.Text = "Buy Anime Roblox"
  29. TextButton.TextColor3 = Color3.new(0, 0, 0)
  30. TextButton.TextSize = 14
  31.  
  32. TextButton_2.Parent = Frame
  33. TextButton_2.BackgroundColor3 = Color3.new(0.509804, 0.509804, 0.509804)
  34. TextButton_2.Position = UDim2.new(-0.0308880303, 0, 0.809128642, 0)
  35. TextButton_2.Size = UDim2.new(0, 258, 0, 50)
  36. TextButton_2.Font = Enum.Font.SourceSans
  37. TextButton_2.Text = "Sub Kenh Youtube"
  38. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  39. TextButton_2.TextSize = 14
  40.  
  41. AutoBabyBottle.Name = "Auto Baby Bottle"
  42. AutoBabyBottle.Parent = Frame
  43. AutoBabyBottle.BackgroundColor3 = Color3.new(0.160784, 0.341176, 1)
  44. AutoBabyBottle.Position = UDim2.new(0.111969113, 0, 0.244813278, 0)
  45. AutoBabyBottle.Size = UDim2.new(0, 200, 0, 50)
  46. AutoBabyBottle.Font = Enum.Font.SourceSans
  47. AutoBabyBottle.Text = "Auto Baby Bottle"
  48. AutoBabyBottle.TextColor3 = Color3.new(0, 0, 0)
  49. AutoBabyBottle.TextSize = 14
  50. AutoBabyBottle.MouseButton1Click:connect(function()
  51. game:GetService('RunService').RenderStepped:connect(function()
  52. local Arg1 = game:GetService("Workspace")[game.Players.LocalPlayer.Name]["Baby Bottle"] -- You Can Replace It To Your Tool
  53. local Path = game:GetService("ReplicatedStorage").Remotes.Input
  54. Path:FireServer(Arg1)
  55. end)
  56. end)
  57. AutoAttack.Name = "Auto Attack"
  58. AutoAttack.Parent = Frame
  59. AutoAttack.BackgroundColor3 = Color3.new(0.117647, 0.0392157, 1)
  60. AutoAttack.Position = UDim2.new(0.111969113, 0, 0.547717869, 0)
  61. AutoAttack.Size = UDim2.new(0, 200, 0, 50)
  62. AutoAttack.Font = Enum.Font.SourceSans
  63. AutoAttack.Text = "Auto Attack"
  64. AutoAttack.TextColor3 = Color3.new(0, 0, 0)
  65. AutoAttack.TextSize = 14
  66. AutoAttack.MouseButton1Click:connect(function()
  67. _G.attk = true
  68. while _G.attk do
  69. wait()
  70. local shroud = game.Players
  71. local plr = game.Players.LocalPlayer.Character.HumanoidRootPart
  72. for _, h in pairs(shroud:GetPlayers()) do
  73. plr.CFrame = h.Character.HumanoidRootPart.CFrame
  74. local Arg1 = game:GetService("Workspace")[game.Players.LocalPlayer.Name]["Swipe Attack"] -- Your Attack
  75. local Path = game:GetService("ReplicatedStorage").Remotes.Attack
  76. Path:FireServer(Arg1)
  77. end
  78. end
  79. end)
  80. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement