|
| 20 Apr 2014 10:07 AM |
I wander why it keep going to a grey texture on the egg?
---I hope you enjoy, this took AGES to make!--- rare = 0 function EGGY() local Ran = math.random(1,12) local Random = Ran Egg=Instance.new("Part") Egg.Shape = "Ball" Egg.Size = Vector3.new(2,2,2) Egg.Parent = workspace Egg.formFactor = 2 Egg.TopSurface = 0 Egg.BottomSurface = 0 Egg.CFrame = CFrame.new(math.random(-200,200),math.random(0,99),math.random(-200,200)) Mesh = Instance.new("SpecialMesh") Mesh.Parent = Egg Mesh.MeshType = "FileMesh" Mesh.MeshId="http://www.roblox.com/asset/?id=110788681" if Random==1 then Mesh.TextureId="http://www.roblox.com/asset/?id=110788623"
local scri=script.Count:clone() scri.Name = "110789152" scri.Disabled = false scri.Parent = Egg Egg.Name = "Basic Egg" game.Debris:AddItem(Egg,10) elseif Random==5 then if math.random(1,3)~=2 then Egg:Remove() return end Mesh.TextureId="http://www.roblox.com/asset/?id=110788623" end end
function enter(player) local eg = Instance.new("IntValue") eg.Name = "Eggs" eg.Value = 0 eg.Parent = player end
game.Players.ChildAdded:connect(enter)
p = game.Players:GetChildren() for i = 1,#p do enter(p[i]) end
while true do EGGY() wait(math.random(0,10)) end |
|
|
| Report Abuse |
|
|
| 20 Apr 2014 10:10 AM |
Change the Mesh.TextureId="http://www.roblox.com/asset/?id=110788623" Part of the script |
|
|
| Report Abuse |
|
| |
| |
|
| 20 Apr 2014 11:41 AM |
| I copied the textures from ROBLOX's account. Do I need to put them in my account? To make it work. |
|
|
| Report Abuse |
|