Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.05 KB | None | 0 0
  1. maxLikesLittleKids = false
  2. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  3.     if key == "z" then
  4.         if not maxLikesLittleKids then
  5.             maxLikesLittleKids = true
  6.             print("Yeet Enabled")
  7.         else
  8.             maxLikesLittleKids = false
  9.             print("Yeet Disabled")
  10.         end
  11.     end
  12. end)
  13. spawn(function()
  14.     while true do
  15.         wait(0.5)
  16.         if maxLikesLittleKids then
  17.             print("Clover Field")
  18.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(174, 34, 189)
  19.             wait(20)
  20.             print("Blue Field")
  21.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(113.7, 4, 101.5)
  22.             wait(20)
  23.             print("Bamboo Field")
  24.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(93, 20, -25)
  25.             wait(20)
  26.             print("Pineapple Field")
  27.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(285.3,70.2,-200)
  28.             wait(30)
  29.             print("Strawberry Field")
  30.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-169.3, 20, -3.2)
  31.             wait(20)
  32.             print("Cactus Field")
  33.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-194, 68, -107)
  34.             wait(20)
  35.             print("Pinetree Field")
  36.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-318, 68, -150)
  37.             wait(20)
  38.             print("Rose Field")
  39.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-322, 20, 124)
  40.             wait(20)
  41.             print("Mushroom Field")
  42.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-94, 5, 116)
  43.             wait(20)
  44.             print("Spider Field")
  45.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-57.2, 20, -5.3)
  46.             wait(20)
  47.             print("Make Honey")
  48.             game:GetService("Players").LocalPlayer.Character:MoveTo(game:GetService("Players").LocalPlayer.SpawnPos.Value.p)
  49.             wait(1)
  50.             game:GetService("ReplicatedStorage").Events.PlayerHiveCommand:FireServer("ToggleHoneyMaking")
  51.             repeat wait(0.5) until game:GetService("Players").LocalPlayer.CoreStats.Pollen.Value < 1 then
  52.             wait(1)
  53.         end
  54.     end
  55. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement