Advertisement
Guest User

delete x

a guest
Jun 24th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local mouse = plr:GetMouse()
  3. local uis = game:GetService"UserInputService"
  4.  
  5. uis.InputBegan:Connect(function(i, chatting)
  6. if chatting then return end
  7. if i.KeyCode == Enum.KeyCode.X then
  8. mouse.Target.Parent = game:GetService"ReplicatedStorage"
  9. end
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement