of     1   

Alpal425
#183665685Monday, February 15, 2016 2:11 PM GMT

So... I managed to make a Buy House/For Sale Sign, Sell House, and a Front Door Configuration thing all by myself. I know it's silly, but I'm proud of myself because I managed to actually not bug you guys for once. But now CFraming has come along and knocked me off my feet. Sigh. This bit of code is within the Sell House script, fyi. Because without this, if the house owner is within the house when they sell it, they'll be locked in their house and be forced to reset. Here's the error from output: Players.Player.PlayerGui.HouseControls.SellHouse.Script:42: attempt to index field 'Vector3' (a nil value) And finally, the script: local torso = script.Parent.Parent.Parent.Parent.Character.Torso local p = findhouse.RetailHouse.FDoor.Position torso.CFrame = CFrame.Vector3.new(p, p, p.Z + .8) --Outside House Because the house is going to be copy and pasted, I didn't want to have to figure out the exact CFrame location for each house. I just want them to be able to teleport right outside the door. Clearly, I have no idea how to execute this even after of a day of studying of how to write this out on the Wiki. Thanks for any help at all. Extremely appreciated. Sorry for the long post.
cheesecake123456
#183665794Monday, February 15, 2016 2:13 PM GMT

torso.CFrame = CFrame.Vector3.new(p, p, p.Z + .8) A CFrame is made of 2 Vector3s, it does not have a Vector3 property. torso.CFrame = CFrame.new(p, p, p.Z + .8) You could use: Character:MoveTo(Vector3.new(p, p, p.Z + .8))
Alpal425
#183666832Monday, February 15, 2016 2:33 PM GMT

Ah, that makes more sense than what I was trying to do but I'm getting an error from using the torso.CFrame = CFrame.new(p, p, p.Z + .8) "08:31:42.979 - CFrame is not a valid member of Model 08:31:42.982 - Script 'Players.Player.PlayerGui.HouseControls.SellHouse.Script', Line 42" Thank you for the help!
cheesecake123456
#183666935Monday, February 15, 2016 2:34 PM GMT

Make sure that torso is a part, not a model, otherwise you need to use different methods.
cheesecake123456
#183666959Monday, February 15, 2016 2:35 PM GMT

Then again, MoveTo works with models so try that.
Alpal425
#183667887Monday, February 15, 2016 2:51 PM GMT

local Character = game.Workspace:FindFirstChild(Player.Name) local p = findhouse.RetailHouse.FDoor.Position Character:MoveTo(Vector3.new(p, p, p.Z + .8)) That works but for some reason I go to the side of the house rather than the .8 in front of the door...? I double checked and .8 in the direction of Z IS the way I need it to move... It's probably a problem with my numbers... The script WORKS though! :D Again, thank you so much.

    of     1