in my game im making a sprint like system, and i was wondering if there was a way too give the local player ice phyisics but no other players, so they drift around? idk if this is possible but i dont even know where to start
I stole this from the toolbox, just put this into whatever individual part you want to be slippery.
You can enable this locally by just having it “turn on” when the player is in their slippery state
local part = script.Parent
local density = 0.919
local friction = 0.001
local elasticity = 0.15
local frictionWeight = 300
local elasticityWeight = 1
local physProperties = PhysicalProperties.new(density, friction, elasticity, frictionWeight, elasticityWeight)
part.CustomPhysicalProperties = physProperties
Their is a property inside of parts that allow yo to make slipply when you step on them, idk whats called or if it makes you slipply when you walk around