| -- src/ReplicatedStorage/Shared/VehicleConfig.lua | |
| local VehicleConfig = { | |
| -- Physical properties for the truck bed to prevent logs from sliding off easily while driving | |
| -- Density, Friction, Elasticity, FrictionWeight, ElasticityWeight | |
| -- Extremely high Friction and FrictionWeight to lock the logs to the bed | |
| FlatbedPhysicalProperties = PhysicalProperties.new(1.0, 2.0, 0, 100, 100), | |
| CollisionGroups = { | |
| Logs = "Logs", | |
| Vehicles = "Vehicles", | |
| } | |
| } | |
| return VehicleConfig | |