Facebook
From Anorexic Zebra, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 1852
  1. --[[
  2.     Instructions:
  3.     (1): On "Red light, green light", hold Shift to run fast until you reach
  4.          the finishing line. Don't cross the finishing line until after atleast
  5.          40 seconds.
  6.     (2): On "Honeycomb", press Left Control and One at the same time, the
  7.          honeycomb GUI might still be there but that will go away when the
  8.          game ends.
  9.     (3): On "Tug of War", hold Left Control and Two at the same time until
  10.          your team wins.
  11.     (4): On "Glass Stepping Stones", press Left Control and Three at the same
  12.          time and you should be teleported to the end.
  13.     (NOTE): At nights, you can either: (1) Press CTRL + N to be teleported to an area
  14.             where no-one can kill you, (2) Hold CTRL + X to kill everyone else, this
  15.             option might make the game less fun though since you'll be the only One
  16.             playing.
  17.     (NOTE): The only game that is not supported is the "Marbles" game, which I can't
  18.             find a loophole for.
  19.  
  20.     Controls:
  21.     [1]: (Hold) Shift - Run faster
  22.     [2]: (Press) Left Control + 1 - Beat "Sugar Honeycomb"
  23.     [3]: (Hold) Left Control + 2 - Beat "Tug of War"
  24.     [4]: (Press) Left Control + 3 - Beat "Glass Stepping Stones"
  25.     [5]: (Hold) Left Control + X - Kill everyone else
  26.     [6]: (Press) Left Control + N - Teleport to a place where no-one can kill you
  27. ]]
  28.  
  29. local userInputService = game:GetService("UserInputService")
  30. local replicatedStorage = game:GetService("ReplicatedStorage")
  31. local players = game:GetService("Players")
  32. local player = players.LocalPlayer
  33.  
  34. userInputService.InputBegan:Connect(function(input, onGui)
  35.     if not onGui and userInputService:IsKeyDown(Enum.KeyCode.LeftControl) then
  36.         if userInputService:IsKeyDown(Enum.KeyCode.One) then
  37.             replicatedStorage.Remotes.SugarHoneycomb:FireServer(true)
  38.         elseif userInputService:IsKeyDown(Enum.KeyCode.Three) and player.Character then
  39.             player.Character.HumanoidRootPart.CFrame = CFrame.new(-336, -125, -191)
  40.         elseif userInputService:IsKeyDown(Enum.KeyCode.N) and player.Character then
  41.             player.Character.HumanoidRootPart.CFrame = CFrame.new(-124, 6, -462)
  42.         end
  43.        
  44.         while userInputService:IsKeyDown(Enum.KeyCode.LeftControl) and userInputService:IsKeyDown(Enum.KeyCode.Two) and wait() do
  45.             replicatedStorage.TugRemote:FireServer()
  46.         end
  47.        
  48.         while userInputService:IsKeyDown(Enum.KeyCode.LeftControl) and userInputService:IsKeyDown(Enum.KeyCode.X) and wait() do
  49.             local tool = game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Baseball Bat")
  50.            
  51.             for _, plr in pairs(game:GetService("Players"):GetPlayers()) do
  52.                 if plr ~= game:GetService("Players").LocalPlayer and plr.Character then
  53.                         game:GetService("ReplicatedStorage").Remotes.Replication:FireServer(plr.Character.Humanoid, 10)
  54.                 end
  55.             end
  56.            
  57.             if tool then
  58.                 game:GetService("Players").LocalPlayer.Character.Humanoid:EquipTool(tool)
  59.             end
  60.         end
  61.     elseif not onGui and input.KeyCode == Enum.KeyCode.LeftShift then
  62.         if player.Character then
  63.                 player.Character.Humanoid.WalkSpeed = 100
  64.         end
  65.     end
  66. end)
  67.  
  68. userInputService.InputEnded:Connect(function(input, onGui)
  69.         if not onGui and input.KeyCode == Enum.KeyCode.LeftShift then
  70.                 if player.Character then
  71.                         player.Character.Humanoid.WalkSpeed = 16
  72.                 end
  73.         end
  74. end)