About 236,000 results
Open links in new tab
  1. How to make objects disappear when they touch certain bricks in ROBLOX

    Jan 4, 2018 · I'm trying to make an obby with a falling blocks level and the bricks fall fine but I want them to disappear when they touch a certain block so they don't look messy. Any help? Assuming that each falling part is a new part, you can simply destroy the …

  2. Make a part disappear when a part touches it - Roblox

    May 3, 2022 · Here is a correct script: Sword.Touched:Connect(function(Hit) if Hit:IsA("BasePart") then if not Hit:IsDescendantOf(Char) then local Humanoid = Hit.Parent:FindFirstChild("Humanoid") if Humanoid then Humanoid:TakeDamage(5) else Sword:Destroy() end end end end)

  3. How can I make a part appear and disappear? - Roblox

    Jul 14, 2021 · There’s two ways I’d use to accomplish what you want to do here. The first is by setting the part or model’s parent to ReplicatedStorage or somewhere else that isn’t Workspace or a descendant of it while in Studio. To make it appear and then disappear in-game, you set the parent of the part or mode… set Part’s Transparency. It’s really simple.

  4. How do I make an item disappear after using it? - Roblox

    Mar 11, 2022 · I am making an escape game and I want the items to disappear after you use them. I tried scripting it, but it does not seem to work. Once I use a key I need it to leave the players inv. Here is my script:

  5. Lua Script: Make a Block Disappear on Touch in Roblox Studio

    Learn how to create a Lua script in Roblox Studio that makes a block disappear when it is touched.

  6. Disappearing Part - Lua Learning

    Making the Part Disappear. To make the part disappear, we have to add the function. function OnTouch Next, we have to make it wait a bit to disappear after the player touches the part. function OnTouch wait(0.5) You can make it take any amount of time to disappear you want.

  7. Roblox Studio Tutorial | How to make a disappearing block on touch

    In this video, you will learn how to make blocks that disappear when you touch them! To make sure you're not missing any of my tutorials, Subscribe with noti...

  8. How to make a Part disappear when Touched Roblox Studio

    Hope This Video Was Useful Comment Other Tutorial You Want Me To Make For You Guys.----Disappear Script-----local part = script.Parentscript.Parent.Touched:C...

  9. lua - How can you make an object disappear in ROBLOX over a …

    Jan 2, 2018 · I'm making a game in ROBLOX, which has a cutscene in it at the start. At the end of the cutscene, the camera zooms up on the character and you spawn in. However, when I spawn in, I can see the dummy I used for the cutscene, so how after a certain interval can you make that dummy disappear?

    Missing:

    • Touch Script

    Must include:

  10. How to make a model / object disappear when a player steps ... - Roblox

    Jan 14, 2021 · You can use Reigon3 or you can make invisible hitbox detections and use .Touched to fire an event that despawns the models. Or use ontouch targetting a part from workspace. I’m not good at scripting so if this doesn’t work, I understand and I apologise. You can do something like this. DisappearingPart.Transparency = 1.

Refresh