DailyTime
|
  |
| Joined: 09 Nov 2013 |
| Total Posts: 285 |
|
|
| 29 Nov 2013 01:45 PM |
I have
decal = Instance.new("Decal") decal.Parent = game.Players.LocalPlayer.BackPack.Pizza Dough decal.Texture = ["http://www.roblox.com/asset/?id=6868077"]
how do i do it to add the texture? |
|
|
| Report Abuse |
|
|
DailyTime
|
  |
| Joined: 09 Nov 2013 |
| Total Posts: 285 |
|
| |
|
|
| 29 Nov 2013 01:52 PM |
decal = Instance.new("Decal", game.Players.LocalPlayer.Backpack["Pizza Dough"]) decal.Texture = "http://www.roblox.com/asset/?id=6868077"
This script only works in LocalScript because you are using LocalPlayer. |
|
|
| Report Abuse |
|
|
|
| 29 Nov 2013 01:53 PM |
decal = Instance.new("Decal") decal.Parent = game.Players.LocalPlayer.BackPack:findFirstChild("Pizza Dough") decal.Texture = ["http://www.roblox.com/asset/?id=6868077"]
~Shadow~ |
|
|
| Report Abuse |
|
|