Advertisement
Guest User

Bleach primera script (not made by me)

a guest
Apr 1st, 2019
3,138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. local m = game.Players.LocalPlayer:GetMouse()
  2. m.KeyDown:connect(function(k)
  3. k = k:lower()
  4. if k == "c" then
  5. for i, v in pairs(workspace.Food:GetChildren()) do
  6. if v.ClassName == "Part" then
  7. v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(2,-1,0)
  8. end
  9. end
  10. end
  11. end)
  12.  
  13. --]]
  14.  
  15. function code()
  16. local soul1 = game.Workspace.Food:FindFirstChild("DeadH")
  17. if soul1 ~= nil then
  18. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = soul1.CFrame
  19. else
  20. soul2 = game.Workspace.Food:FindFirstChild("DeadSR") -- You can swap these if you want to tp to deadSR instead
  21. if soul2 ~= nil then
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = soul2.CFrame
  23. end
  24. end
  25. end
  26.  
  27. ----
  28.  
  29. on = 1
  30.  
  31. ----
  32.  
  33. local UIS = game:GetService("UserInputService")
  34. UIS.InputBegan:connect(function(Input)
  35. local KeyCode = Input.KeyCode
  36. if KeyCode == Enum.KeyCode.F3 then
  37. on = 1
  38. wait(.2)
  39. while on == 1 do
  40. game:GetService('RunService').Stepped:wait(0)
  41. local good,bad = pcall(code)
  42. if good and on == 1 then
  43. code()
  44. else
  45. wait()
  46. end
  47. end
  48. end
  49. end)
  50. UIS.InputBegan:connect(function(Input)
  51. local KeyCode = Input.KeyCode
  52. if KeyCode == Enum.KeyCode.F4 then
  53. on = 0
  54. end
  55. end)
  56.  
  57. plr = game.Players.LocalPlayer
  58.  
  59. hum = plr.Character.HumanoidRootPart
  60.  
  61. mouse = plr:GetMouse()
  62.  
  63.  
  64.  
  65. mouse.KeyDown:connect(function(key)
  66.  
  67. if key == "q" then
  68.  
  69. if mouse.Target then
  70.  
  71. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  72.  
  73. end
  74.  
  75. end
  76. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement