
BasePart | Documentation - Roblox Creator Hub
BasePart is an abstract base class for in-world objects that render and are physically simulated while in the Workspace. There are several implementations of BasePart, the most common being Part and MeshPart. Others include WedgePart, SpawnLocation, and the singleton Terrain object.
New Part Collision Property: CanTouch [ACTIVATED] - Roblox
Mar 26, 2021 · Here’s a quick overview of a new collision property for BaseParts. BasePart.CanTouch lets your determine if the part will trigger Touched 270 / TouchEnded 135 events on other BaseParts with TouchTransmitters. …
Ultimate Guide: Touch Events - Community Tutorials - Roblox
Sep 27, 2020 · I show how to check what parts are touching, how to check if a player touched the part, how to use a debounce, and how to disconnect the connection. I also talk about Roblox’s API, and I cover how I learned everything I show.
How to use get touching parts - Scripting Support - Roblox
Oct 6, 2020 · GetTouchingParts 459 returns a table of all the BasePart 53 ’s touching a part, so you can loop through all of the parts and do something with it. for _, part in ipairs …
BasePart.CanTouch | Documentation - Roblox Creator Hub
Roblox Studio has increased the minimum specification requirements. This property determines if Touched and TouchEnded events fire on the part. If true, other touching parts must also have CanTouch set to true for touch events to fire. If false, touch events cannot be set up for the part and attempting to do so will throw an error.
How do I make camera manipulation when a part is touched ... - Roblox
May 1, 2022 · I would like to make the camera movement be from the top (like in the photo), but only when a part is touched.
BasePart.TouchEnded | Documentation - Roblox Creator Hub
Fires when a part stops touching another part under similar conditions to those of BasePart.Touched. This event works in conjunction with Workspace.TouchesUseCollisionGroups to specify whether collision groups are acknowledged for detection. Parameters
What is a reliable way to detect touch? - Roblox
Nov 6, 2023 · I’m trying to find a reliable way to detect touching parts because all the Roblox-given methods that I tried don’t work. Touch events don’t work because both parts involved are anchored, and getting the parts inside the parts doesn’t work …
TouchTransmitter | Documentation - Roblox Creator Hub
An internal object used by networking and replication code to transmit BasePart.Touched and BasePart.TouchEnded events. The TouchTransmitter object named 'TouchInterest' is created and parented to a BasePart when the BasePart.Touched or …
BasePart :GetTouchingParts() and :IsTouching(Instance BasePart ... - Roblox
May 18, 2015 · These methods allow us to check if two parts are intersecting and get a table of all the parts that are intersecting. Table BasePart:GetTouchingParts () would be a method that returns all part that the BasePart is in contact with.
- Some results have been removed