Head tilting for R6 and full head/torso tilting for R15 player characters. Showcases shown in my Twitter profile.
- R15 & R6 Support: Full torso and head tilting for R15, with head-only tilting for R6.
- Configurable: Tilt limits, tilt responsiveness, and replication interval can all be adjusted.
- Server: Place the Server script into
ServerScriptService. - Client: Place the Client script into
StarterCharacterScripts. - Remotes: The server script will automatically create a
Remotesfolder and aTiltUnreliableRemoteEvent inReplicatedStorageif they don't exist.
If you use Rojo, add the scripts to your src folder and ensure your default.project.json matches the project structure:
"ReplicatedStorage": {
"Remotes": {
"$className": "Folder",
"Tilt": {
"$className": "UnreliableRemoteEvent"
}
}
},
"ServerScriptService": {
"Server": {
"$path": "src/server"
}
},
"StarterPlayer": {
"StarterCharacterScripts": {
"Client": {
"$path": "src/client"
}
}
}