Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

HOW DO I REMOVE THE BOUNCE WHEN AN UNACHORED PART FALLS AND HITS A SURFECE?

Asked by 3 years ago

HOW DO I REMOVE THE BOUNCE WHEN AN UNACHORED PART FALLS AND HITS A SURFECE? HELPP

0
IDEK HELPP WINDOWS10XPRO 438 — 3y
0
Give it more mass? Maybe. DinozCreates 1070 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago

You need to add a script into the part then put this into it.

local part = script.Parent

local friction = -10000
local elasticity = -1000000
local frictionWeight = -1000


-- Construct new PhysicalProperties and set
local physProperties = PhysicalProperties.new(friction, elasticity, frictionWeight)
part.CustomPhysicalProperties = physProperties

Hopes this help

This is the dev fourm link. https://developer.roblox.com/en-us/api-reference/property/BasePart/CustomPhysicalProperties

Ad

Answer this question