tbnj123
|
  |
| Joined: 29 Oct 2010 |
| Total Posts: 443 |
|
|
| 22 Apr 2015 08:20 PM |
k tried parenting a part to message and then tried to cam but doesn't show up in explorer under that nor ingame -using localscript + CurrentCamera -no errors |
|
|
| Report Abuse |
|
|
amanda
|
  |
| Joined: 21 Nov 2006 |
| Total Posts: 5925 |
|
|
| 22 Apr 2015 08:21 PM |
if you can't FE
then you aren't ready for local parts |
|
|
| Report Abuse |
|
|
tbnj123
|
  |
| Joined: 29 Oct 2010 |
| Total Posts: 443 |
|
|
| 22 Apr 2015 08:22 PM |
;( amanda111 but is this method patched ? |
|
|
| Report Abuse |
|
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
|
| 22 Apr 2015 08:25 PM |
| It works, I was actually working on that today. You are welcome to visit my place, I will show you. I parented the character to CurrentCamera |
|
|
| Report Abuse |
|
|
tbnj123
|
  |
| Joined: 29 Oct 2010 |
| Total Posts: 443 |
|
|
| 22 Apr 2015 08:27 PM |
function CreateBubble() local Bubble = Instance.new("Part") Bubble.Name = "Bubble" Bubble.BrickColor = BrickColor.new("Navy blue") Bubble.FormFactor = "Custom" Bubble.CanCollide = false Bubble.Size = Vector3.new(0,0,0) local BubbleMesh = Instance.new("SpecialMesh",Bubble) BubbleMesh.MeshType = "FileMesh" BubbleMesh.MeshId = "http://www.roblox.com/asset/?id=90782182" BubbleMesh.Scale = Vector3.new(100,100,100) local BPosition = Instance.new("BodyPosition",Bubble) BPosition.maxForce = Vector3.new(0,math.huge,0) BPosition.P = math.huge local BPosition2 = Instance.new("BodyPosition",Bubble) BPosition2.maxForce = Vector3.new(math.huge,0,math.huge) BPosition2.P = math.huge local BGyro = Instance.new("BodyGyro",Bubble) BGyro.maxTorque = Vector3.new(0,0,math.huge) Bubble.Parent = Cam BPosition.position = Vector3.new(0,workspace.Water1.Position.Y-293.8,0) BGyro.cframe = CFrame.Angles(0,0,1.5) local Follow = coroutine.wrap(function() repeat BPosition.position = Vector3.new(0,workspace.Water1.Position.Y-293.8,0);BPosition2.position = Char.Torso.Position; wait() until 1 == 0 end) Follow() Char.Humanoid.Died:wait() Bubble:Destroy() end |
|
|
| Report Abuse |
|
|
iiEssence
|
  |
| Joined: 18 Jun 2014 |
| Total Posts: 3467 |
|
|
| 22 Apr 2015 08:29 PM |
| Cam = workspace.CurrentCamera? |
|
|
| Report Abuse |
|
|
tbnj123
|
  |
| Joined: 29 Oct 2010 |
| Total Posts: 443 |
|
|
| 22 Apr 2015 08:31 PM |
| only posted the function but ya i hav that indexed |
|
|
| Report Abuse |
|
|
tbnj123
|
  |
| Joined: 29 Oct 2010 |
| Total Posts: 443 |
|
|
| 22 Apr 2015 08:32 PM |
| nvm fixed it, removed the .P = math.huge |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2015 09:21 PM |
Ok guys stop making it hard on the guy. Look here is a very simple way to do it
First get a localscript and put it in the players backpack then put this code in it
cplr = workspace:FindFirstChild(game.Players.LocalPlayer.Name) m = Instance.new("Message", cplr) p = Instance.new("Part", m)
And there it is very easy to do now the part that I created can only be seen by the player that has the message in him and just to let to u know this can ONLY be done in a LOCALSCRIPT |
|
|
| Report Abuse |
|
|