Hello, so i’m working on an fps game and i would like to make the baseplate slippery like ice, is there a way to do it?
Thank you!
Hello, so i’m working on an fps game and i would like to make the baseplate slippery like ice, is there a way to do it?
Thank you!
Go under the parts properties and change the friction. You will need to enable Part.CustomPhysicalProperties first.
local d = 1
local f = .01 --Set this to a lower number for a better slide effect.
local e = 1
local fw = 100 --Set this to a higher number for a better slide effect.
local ew = 1
local Properties = PhysicalProperties.new(d, f, e, fw, ew)
script.Parent.CustomPhysicalProperties = Properties