Advertisement
WeDoScripts

Phantom Forces shoot through walls

Feb 3rd, 2019
2,502
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. --Press "E" to toggle. This script allows you to see through walls and shoot through them k thx bai
  2.  
  3. local Move = game.Workspace.Map local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local mouse = Players.LocalPlayer:GetMouse() local a = false mouse.KeyDown:Connect(function(key) if key == "e" then if a == false then Move.Parent = ReplicatedStorage Players.LocalPlayer.Character.HumanoidRootPart.Anchored = true a = true elseif a == true then Move.Parent = game.Workspace Players.LocalPlayer.Character.HumanoidRootPart.Anchored = false a = false end end end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement