Advertisement
DragonSploitsYT

Phantom Forces OP Script 2

Mar 4th, 2020
1,988
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. -- Y deletes map
  2. -- B places Baseplate
  3. -- N Brings map back and delete baseplate
  4. local Players = game:getservice'Players'
  5. local lp = Players.LocalPlayer
  6. local Mouse = lp:GetMouse()
  7. local bps = Instance.new("Part")
  8. bps.Position = Vector3.new(0,0,0)
  9. bps.Size = Vector3.new(1000,1,1000)
  10. bps.Name = "X5J0cGYs2HiPNaZb6"
  11. bps.Parent = game.ReplicatedStorage
  12. Mouse.KeyUp:connect(function(ken)
  13. if ken == "y" then
  14. workspace.Map.Parent = game.ReplicatedStorage
  15. end
  16. end)
  17. Mouse.KeyUp:connect(function(keb)
  18. if keb == "b" then
  19. bps.Parent = workspace
  20. end
  21. end)
  22. Mouse.KeyUp:connect(function(key)
  23. if key == "n" then
  24. game.ReplicatedStorage.Map = workspace
  25. bps.Parent = game.ReplicatedStorage
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement