Advertisement
InTesting

My Converter WIP, go away.

Jul 7th, 2019
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. local function Get_Components_Of_Mouse(player)
  2.     local pchar = player.Character
  3.     if pchar then
  4.         local Remote = pchar:FindFirstChild('RE_Mouse')or
  5.             Instance.new("RemoteEvent",pchar)
  6.         Remote.Name = 'RE_Mouse'
  7.        
  8.         Remote.Parent = NLS(
  9.             [[
  10. local lp,runs,re =
  11.     game:GetService'Players'.LocalPlayer,game:GetService'RunService',
  12.     script:WaitForChild('RE_Mouse')
  13. local mouse = lp:GetMouse()
  14.  
  15.  
  16.             ]]
  17.             ,pchar)
  18.         return Remote
  19.     else
  20.         error('Best to actually put your character In the game.')
  21.     end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement