|
| 18 Mar 2011 03:20 AM |
Hey guys, I'm making a game and I was thinking about having a spawn room with the correct team morphs but someone could just teleport to the map without morphing and that would ruin the fun of gthe game. So I was wondering if there was a spawn morph script (well there is! see this game: http://www.roblox.com/Predator-item?id=18751503 ) Asking for someone to make you a script is against this forum rules (last time I checked) so can you send a link to one on the catalog, thanks.
If you can make scripts for other people then post it here. |
|
|
| Report Abuse |
|
|
|
| 18 Mar 2011 04:25 AM |
| We dont make scripts for you, We fix them! |
|
|
| Report Abuse |
|
|
|
| 18 Mar 2011 11:44 AM |
@Robert00001 Alright then, thanks for clearing that up. So is there one in the catalog? |
|
|
| Report Abuse |
|
|
| |
|
|
| 18 Mar 2011 12:52 PM |
| You can go to the "Let's Make a Deal" forum. |
|
|
| Report Abuse |
|
|
| |
|
|
| 14 Nov 2012 12:41 AM |
| I am looking for the same thing you are my friend... |
|
|
| Report Abuse |
|
|
|
| 14 Nov 2012 01:48 AM |
| To be honest, the S&H people aren't the nicest crew, but they're very helpful. I try and be as polite as possible. :P |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2012 06:09 PM |
| I looking for the same thing, in fact that is how I got to this forum -_- |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2012 06:18 PM |
| There are some free models on this. I suggest just editing a current morph giver from OnTouch to ChildAdded. |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2012 09:18 PM |
Script? I can't script, but I sure can draw! Maybe I'll get some morphs for you if you want. -Auxiliatrix |
|
|
| Report Abuse |
|
|
|
| 25 Nov 2012 09:26 PM |
local TeamAppearances = {TeamNameHere = "ID HERE of a person dressed as the suit!",
local TeamBaseURL = "http://www.roblox.com/Asset/CharacterFetch.ashx?userId="
local Player = script.Parent.Parent
for _, team in pairs(game.Teams:GetTeams()) do if (Player.TeamColor.Name == team.TeamColor.Name) then local teamAppearance = TeamAppearances[team.Name] if teamAppearance then Player.CharacterAppearance = TeamBaseURL .. teamAppearance end end end
|
|
|
| Report Abuse |
|
|
|
| 25 Nov 2012 09:27 PM |
There I just wipped that one up
Fresh outta the batch |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 May 2013 06:10 AM |
| What does the http://www.roblox.com/Asset/CharacterFetch.ashx?userId mean ? and how do i put like overseers morph or how do i find the morph's id ? help please |
|
|
| Report Abuse |
|
|
|
| 29 May 2013 06:40 AM |
function MorphPlr() local NewPlr=game.Workspace:findFirstChild(game.Players.PlayerAdded) --Not sure if it works. if NewPlr.Torso.BrickColor=="Bright blue" then local Plr=NewPlr:GetChildren() for i=1, #Plr do local BodyParts=Plr[i] if BodyParts.ClassName=="Part" then local Mesh=BodyParts:findFirstChild("Mesh") if Mesh.ClassName=="SpecialMesh" then Mesh.MeshType="FileMesh" local LeftArmMesh=BodyParts:findFirstChild("LeftArm").[Mesh] LeftArmMesh.MeshId="LeftArmMeshIdHere" local RightArmMesh=BodyParts:findFirstChild("RightArm").[Mesh] RightArmMesh.MeshId="RightArmMeshIdHere" local TorsoMesh=BodyParts:findFirstChild("Torso").[Mesh] TorsoMesh.MeshId="TorsoMeshIdHere" local LeftLegMesh=BodyParts:findFirstChild("LeftLeg").[Mesh] LeftLegMesh.MeshId="LeftLegMeshIdHere" local RightLegMesh=BodyParts:findFirstChild("RightLeg").[Mesh] RightLegMesh.MeshId="RightLegMeshIdHere" end end end end
game.Players.PlayerAdded:connect(MorphPlr) |
|
|
| Report Abuse |
|
|
|
| 11 Jun 2013 08:08 AM |
| Doesn't work... Please send me another... Thanks!! |
|
|
| Report Abuse |
|
|