of     1   

heliman566
#183025628Friday, February 05, 2016 4:31 AM GMT

Hi, Before you read this I would like for you to know that I am new to building and scripting. So please, don't be rude, you too, were probably asking this question too. Okay, I want to make a door without hinges and I got a pretty good idea for it. When Player collides with fore mentioned door, the door's cancollide will turn off for "x" amount of time for the player to pass through it and when "x" amount of time is through, the door's cancollide turns on again. How would I script this. Also, for the sake of simplicity, let's make x=2. Thank you and have a nice day! :)
zaniac10
#183026054Friday, February 05, 2016 4:39 AM GMT

localscript inside of the door: local plr = game.Players.LocalPlayer -- the player repeat wait() until plr.Character -- waits until the character is fully loaded in local char = plr.Character -- character local cd = 2 -- "x," cooldown local db = false -- debounce to avoid glitches script.Parent.Touched:connect(function(hit) -- when the door is touched, hit being what touched the door if hit.Parent ~= nil then -- makes sure the part that touches the door has a parent if hit.Parent:FindFirstChild("Humanoid") then -- checks if whatever touches the door has a humanoid if db == false then db = true -- if debounce is false, it'll set it to true so the script can't take affect for x amount of time script.Parent.CanCollide = false -- disables collision registry script.Parent.Transparency = .4 -- makes it look see-through wait(cd) -- waits for "x" amount of time script.Parent.CanCollide = true -- enables collision registry script.Parent.Transparency = 0 -- makes it not transparent db = false -- turns off debounce so the script can activate again end end end end)
zaniac10
#183026359Friday, February 05, 2016 4:45 AM GMT

Actually, put it in a normal script inside of a part and do just this: local cd = 2 -- "x," cooldown local db = false -- debounce to avoid glitches script.Parent.Touched:connect(function(hit) -- when the door is touched, hit being what touched the door if hit.Parent ~= nil then -- makes sure the part that touches the door has a parent if hit.Parent:FindFirstChild("Humanoid") then -- checks if whatever touches the door has a humanoid if db == false then db = true -- if debounce is false, it'll set it to true so the script can't take affect for x amount of time script.Parent.CanCollide = false -- disables collision registry script.Parent.Transparency = .4 -- makes it look see-through wait(cd) -- waits for "x" amount of time script.Parent.CanCollide = true -- enables collision registry script.Parent.Transparency = 0 -- makes it not transparent db = false -- turns off debounce so the script can activate again end end end end)
heliman566
#183027232Friday, February 05, 2016 5:06 AM GMT

Thanks dude, hardly know what half of that means but thanks! I'll learn from it.

    of     1