
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@rbxts/atomic-binding
Advanced tools
The credit for the original source code goes to Roblox.
The contents of this file were taken from Roblox-provided AtomicBinding ModuleScript located under the RbxCharacterSounds LocalScript, which itself is located in the StarterPlayerScript service.
Note that there is autocomplete support for alias values. You should use slash (/) to see the possible paths.
type Character = Model & {
Humanoid: Humanoid & {
Animator: Animator;
};
HumanoidRootPart: BasePart;
};
// Notice how we first invoke an empty function.
const bindingFromBase = createAtomicBinding<Character>()({
animator: "Humanoid/Animator",
humanoid: "Humanoid",
rootPart: "HumanoidRootPart",
}, ({ root, animator, humanoid, rootPart }) => {
// do something with "Animator"
// do something with "Humanoid"
// do something with "HumanoidRootPart"
return () => {
// Disconnect all "instances" related connections
};
});
const manifest = createManifest<Character>({
animator: "Humanoid/Animator",
humanoid: "Humanoid",
rootPart: "HumanoidRootPart",
})
const binding = createAtomicBinding(manifest, ({ root, animator, humanoid, rootPart }) => {
// do something with "Animator"
// do something with "Humanoid"
// do something with "HumanoidRootPart"
return () => {
// Disconnect all "instances" related connections
};
})
const character = {} as Character
// some CharacterAdded event handler
binding.bindRoot(character);
// some CharacterRemoving event handler
binding.unbindRoot(character);
binding.destroy();
The "getInstanceFromPath" function is quite helpful when we just want to ensure that the instance exists at the provided path.
type SomeModel = Model & {
Particles: Folder & {
Particle1: ParticleEmitter;
Particle2: ParticleEmitter;
}
}
const someModel = {} as SomeModel
const particle = getInstanceFromPath(someModel, "Particles/Particle1")
if (!particle) {
return
}
The waitForInstanceFromPath function does the same as the getInstanceFromPath function, but instead utilizes WaitForChild method of the Instance. This means that the return type will never be undefined.
FAQs
Types for AtomicBinding module
The npm package @rbxts/atomic-binding receives a total of 29 weekly downloads. As such, @rbxts/atomic-binding popularity was classified as not popular.
We found that @rbxts/atomic-binding demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.