Advertisement
iceeeeeaa

asdsafd

Jan 19th, 2017
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local cam = game.Workspace.CurrentCamera
  3.  
  4. plr.Character = nil
  5. cam.CameraSubject = game.Workspace
  6. cam.CameraType = Enum.CameraType.Fixed
  7.  
  8. m = plr:GetMouse()
  9.  
  10. m.Button1Down:connect(function()
  11. if m.Target and m.Target:IsA("BasePart") then
  12. local exp = Instance.new("Explosion", m.Target)
  13. exp.Position = m.Target.Position
  14. print(m.Target.Position)
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement