Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --L respawn
- --n drop gun
- --Press r to reload your gun instantly
- wait(5)
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
- if key == 'l' then
- workspace.Events.Shop:FireServer("JoinGame")
- end
- end)
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
- if key == 'n' then
- for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = game.Workspace.DroppedItems
- end
- end
- end
- end)
- game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
- if key == 'r' then
- for i, v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
- if v:IsA("Tool") then
- v.Parent = game.Workspace.DroppedItems
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment