Advertisement
Roblox_Xploits

test 3

Mar 12th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Mouse = Player:GetMouse()
  3.  
  4. Mouse.KeyDown:connect(function(key)
  5. if key == "q" then
  6. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  7. script.Disabled = true
  8. print("Firing Light Shot")
  9. game:GetService("Chat"):Chat(Player.Character.Head, "Light Shot", "Red")
  10. local x = Instance.new("Part", game.Workspace)
  11. x.Anchored = false
  12. x.CanCollide = false
  13. x.FormFactor = "Custom"
  14. x.TopSurface = 0
  15. x.BottomSurface = 0
  16. x.BrickColor = BrickColor.new("Bright bluish green")
  17. x.Size = Vector3.new(4,2,2)
  18. x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0,0,-7)
  19. x.Transparency = 0.4
  20. local bv = Instance.new("BodyVelocity", x)
  21. bv.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  22. bv.velocity = Player.Character.Torso.CFrame.lookVector*60
  23. game.Debris:AddItem(x, 3)
  24. wait(6)
  25. script.Disabled = false
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement