ID:2002424
 
Problem description:

I was wondering how you would go about setting who can mouse drag, Like a spacific src.race to get it? I've been trying to find advice on how, Though I failed. =/

Uhh, you can't decide who can and can't MouseDrag, but you can put an if statement that avoids the logic if you're a certain race. Something like

client/MouseDrag()
if(mob.race == "Caucasian")
//Do stuff
else
//Don't do stuff
Ah ok just make it return if they aren't the right race?
If that's what you want, yeah.