of     1   

baseerpirzada2
#225828063Sunday, October 01, 2017 2:49 PM GMT

what script should I add to a door a house to make it buyable? (plz help nobody is helping me) baseerpirzada
dryhorse2014
#225828978Sunday, October 01, 2017 3:07 PM GMT

What do you mean by buyable? Do you want it to sau your name on the door like in the city of robloxia?
baseerpirzada2
#225829181Sunday, October 01, 2017 3:11 PM GMT

like other games, u can buy apartments or houses for example: jailbreak,robloxian life etc baseerpirzada
baseerpirzada2
#225833811Sunday, October 01, 2017 4:38 PM GMT

BUMP baseerpirzada
d1shonour
#225833897Sunday, October 01, 2017 4:39 PM GMT

im not even going to try helping you
xnl
#225841801Sunday, October 01, 2017 6:21 PM GMT

door = script.Parent model = Instance.new("Model", workspace) door.Touched:connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then door.Parent = model human = Instance.new("Humanoid", model) door.Name = "Head" model.Name = hit.Parent.Name.."'s Tycoon" human:Destroy() human.NameDisplayDistance = 100 Instance.new("Humanoid", model) script:Destroy() end end) --copy/paste this and put it into a part as a Script

    of     1