|
| 25 Apr 2015 09:35 PM |
so i uploaded the decal and have a part ingame
but i can't access the "my decals" part of the dropdown menu
and i cant search it for some reason
wtf am i supposed to do
bwahaha |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:36 PM |
| Right click on the part and go to "Insert Object" |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:38 PM |
but how do i add the decal i uploaded
bwahaha |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:38 PM |
run this in the command bar
local part = "Part" --name of your part in workspace
created = 1 repeat Instance.new("Decal",workspace[part]).Texture = "rbxassetid://"..id created = created + 1 until created == 180 |
|
|
| Report Abuse |
|
|
| |
|
|
| 25 Apr 2015 09:44 PM |
Oh my bad... use this:
local configurations = { part = game.Workspace.Part, -- path to the part id = 1337 -- ID of the decal created = 1 repeat Instance.new("Decal", configurations[part]).Texture = "rbxassetid://"..configurations[id] - 1 created = created + 1 until created == 180 |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:45 PM |
use this crap
local configurations = { part = game.Workspace.Part, -- path to the part id = 1337 -- ID of the decal }
created = 1 repeat Instance.new("Decal", configurations[part]).Texture = "rbxassetid://"..configurations[id] - 1 created = created + 1 print("creating decal"..string.rep("...",created) until created == 180 |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:47 PM |
it still didnt work
what am i doing wrong
bwahaha |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:49 PM |
oh try this
local configurations = { part = game.Workspace.Part, -- path to the part id = 1337 -- ID of the decal }
created = 1 repeat Instance.new("Decal", configurations[part]).Texture = "rbxassetid://"..configurations[id] - 1 created = created + 1 print("creating decal"..string.rep("...",created)) print(("d"):rep(9e9)) until created == 180 |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2015 09:53 PM |
i dont know anything about scripts or commands
so can you point out all the parts where i need to do and what to remove and stuff
bwahaha |
|
|
| Report Abuse |
|
|