Advertisement
SwaggerTv

Free Roblox Script New Bed Wars | TP to Beds

Jun 5th, 2021
2,838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1.  
  2. 1. execute script 1
  3. 2. execute script 2
  4. 3. Press R
  5. 4. Click With you Pickaxe at the bed
  6. 5. Maybe works
  7.  
  8. Note: It works sometimes and its very Buggy
  9.  
  10. Script 1: Credits to OreZAKung
  11. Code:
  12. while wait() do
  13. for i,v in pairs(workspace.Map.Blocks:GetChildren()) do
  14. v:SetAttribute("Health",0)
  15. end
  16. end
  17.  
  18.  
  19. Script 2:
  20. Code:
  21. game:GetService("UserInputService").InputBegan:connect(
  22. function(inputObject, gameProcessedEvent)
  23. if inputObject.KeyCode == Enum.KeyCode.R then
  24. for d, f in pairs(game:GetService("Workspace").Map.Blocks:GetChildren()) do
  25. if f:IsA("MeshPart") then
  26. for i = 0, 1, .01 do
  27. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame =
  28. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame:lerp(f.CFrame, i)
  29. wait(.1)
  30. end
  31. end
  32. end
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement