Advertisement
Roblox_Xploits

test 545er5

Mar 12th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2. Mouse = Player:GetMouse()
  3.  
  4. Mouse.KeyDown:connect(function(key)
  5. if key == "f" 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, "BOOSH", "Green")
  10. local x = Instance.new("Part", game.Workspace)
  11. x.Anchored = true
  12. x.CanCollide = false
  13. x.FormFactor = "Custom"
  14. x.TopSurface = 1
  15. x.BottomSurface = 1
  16. x.BrickColor = BrickColor.new("Institutional white")
  17. x.Size = Vector3.new(2,2,2)
  18. x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0,0,-7)
  19. x.Transparency = 0.7
  20. game.Debris:AddItem(x, 1000000000000000)
  21. local f = Instance.new("Part", game.Workspace)
  22. f.Anchored = true
  23. f.CanCollide = false
  24. f.FormFactor = "Custom"
  25. f.TopSurface = 1
  26. f.BottomSurface = 1
  27. f.BrickColor = BrickColor.new("Really black")
  28. f.Size = Vector3.new(4,4,4)
  29. f.CFrame = Player.Character.Torso.CFrame*CFrame.new(0,0,-7)
  30. f.Transparency = 0.7
  31. game.Debris:AddItem(f, 1000000000000000)
  32. wait()
  33. script.Disabled = false
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement