Roblox Owner Only Door Script

Posted on

In the previous article, we explain how to make a Team Only Door, VIP Door game pass and also the script for VIP Door. Now, you may want to make an owner only door and you need the script. Here, we are going to explain it so make sure that you do not miss any single part.

If you search Owner Only Door in Roblox Library, you will find these:

  • Owner Only Door which was created by Rystronack. This is a free model and it was last updated on March 27th, 2012. It has been favorited 64 times and the Roblox ID is 46791700.
  • Owner Only Door Script which was published by Blckhole12. This is a free model and the last update was on April 25th, 2011. It has been favorited once and the Roblox ID is 50684284.
  • Owner Only Door Script which was published by Executive_Director. This is a free model and the last update of this model was on June 6th, 2017. The Roblox ID of this model is 823202400.


Usually, these free model can be used so that you do not need to look for script but of course there will be some changes in the model especially in the script part.

Explicit Username Youtube channel shares the script for Owner Only Door in his video. The name of the video is Roblox Owner Only Door Scripting Tutorial – How To Make A Restricted Door! and it was published on November 25th, 2017. Now, it has been watched more than 8k times with more than 150 likes. Here is the script that he shares.

script.Parent.Touched:Connect(function(hit)

if hit.Parent and hit.Parent:FindFirstChild(“Humanoid”) and game. Players:GetPlayerFromCharacter(hit.Parent) then

local Player = game.Players:GetPlayerFromCharacter(hit.Parent)

if Player.UserId == game.CreatorId then

script.Parent.CanCollide = false

script.Parent.Transparency = 5

wait (3)

script.Parent.CanCollide = true

script.Parent.Transparency = 0

else

hit.Parent:BreakJoints()

end

end

end

So, you are able to use this script when you want to make an Owner Only Door. In the scriptinghelpers.org, someone asks about the thing that is wrong in his script and then another person gives to know him which part of his script which is wrong. So, the script is correct now. Here, we also give you that script that we find in that site and this script is also for making an owner door.

01 local Door = script.Parent

02 local Owner = Door.Parent.OwnerName

03

04 function onTouched(Hit)

05 local Character = Hit.Parent

06 local Player = game.Players:GetPlayerFromCharacter(Character)

07 if Player and Player.Name ~= Owner.Value then

08 Character:BreakJoints()

09 end

10 end

11

12 Door.Touched:connect(OnTouched)

So, you can try any script that you want for making an owner only door in your game. When you try to make a game or parts in your game, it can be about scripting, building and any other processes, do not be shy to ask other people or expert about it so that you can add your knowledge about it and you do not make any mistakes. You can consult about it in a forum such as scriptinghelpers.org, v3rmillion.net and many more.

Leave a Reply

Your email address will not be published. Required fields are marked *