Advertisement
FragRage21

More Knifes (Shadow the World)

Apr 14th, 2020
472
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.44 KB | None | 0 0
  1. local char = game.Players.LocalPlayer.Character
  2. local rot = char["HumanoidRootPart"]
  3. local event = game.ReplicatedStorage:FindFirstChild("STWKnife")
  4. game:GetService("UserInputService").InputBegan:Connect(function(key)
  5.     key = string.lower(key.KeyCode.Name)
  6.     if key == "q" then
  7.         for i = 1,20 do
  8.             if event then
  9.                 event:FireServer(hum, dmg, debtime, bodyfdire, sound)
  10.             end
  11.         end
  12.     end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement