of     2   
chevron_rightchevron_rightchevron_right

axelvts
#159488689Sunday, April 05, 2015 10:52 PM GMT

I'd like a script that: Grabs a model under a specific name from lighting after clicking on a GUI then puts the contents (removing itself from being in its own model (unpack?)) onto a player like a morph Then make the script add a Motor6D to the player torso that connects the torso with the part of the model that will be unpacked into the player called " CORE ". --- If you'd really like to help more- I'd like different animations to be inserted into the player after theGUI click.
TimeTicks
#159489313Sunday, April 05, 2015 10:59 PM GMT

Script it yourself.
Tunicus
#159490131Sunday, April 05, 2015 11:10 PM GMT

Not sure if trolling
NRSchertz
#159490473Sunday, April 05, 2015 11:14 PM GMT

I actually have that exact thing. I'm not giving it to you. ^^ Learn to script like I did, or pay for it. :D
tanlord173
#159491139Sunday, April 05, 2015 11:24 PM GMT

OP, please read the follow below; it's a rule here summarized in my own words: Do not ask people to code for you - we'll fix your script, some might just point out possible areas where errors occur - but we will not, I repeat, will NOT code for you.
axelvts
#159492905Sunday, April 05, 2015 11:44 PM GMT

@Tanlord: I would have posted in Scripting Helpers, but it's been about a year since ROBLOX removed that subform, and didn't think to update the forum Desc. 'And I can't post in Game Design, because no-one there really knows how to script.
RobloxAWasteOfMyTime
#159493141Sunday, April 05, 2015 11:46 PM GMT

Not sure if trolling [2] Septamology - R$100 - Tx23,508
tanlord173
#159493268Sunday, April 05, 2015 11:48 PM GMT

Okay, now I'm a little peeved off. How dare you get mad at me for helping when all the other fools who posted here acted like jerks, but oh no you look at me like I'M the bad guy. And I'm sorry the Game Design 5 out of 10 times is full of game ads, but the ROBLOX wiki (https://wiki.roblox.com) exist to help you learn scripting. Just read some scripting articles related to that. It worked for me.
eLunate
#159493622Sunday, April 05, 2015 11:52 PM GMT

Neniu cxi tie volas skribi skribojn pro vin, dankas por via tempon bonvolu ne revenu.
tanlord173
#159493869Sunday, April 05, 2015 11:54 PM GMT

I took some time (by time I mean 5 seconds using Google Translate) to translate her message. "No one here wants to write scripts for you, thank you for your time please do not come back." Seems kinda harsh.
cody123454321
#159494679Monday, April 06, 2015 12:03 AM GMT

Where did tanlord come from and why is he so salty?
eLunate
#159495160Monday, April 06, 2015 12:09 AM GMT

Li igas mia cxipsojn bongusta
CloneTrooper1019
#159496900Monday, April 06, 2015 12:28 AM GMT

"Script it yourself." Leave this forum and never come back. ------------------------------------------------------------------------------------------ Here's something that might work for you. Make sure you grab this sample model and put it in the ReplicatedStorage: http://www.roblox.com/item.aspx?seoname=Example-Morph&id=234748660 ------------------------------------------------------------------------------------------ function loadMorph(morphName) local player = game.Players.LocalPlayer if player then local char = player.Character if char then local rep = game:GetService("ReplicatedStorage") local morphs = rep:WaitForChild("Morphs") local morphToLoad = morphs:findFirstChild(morphName) if morphToLoad then for _,bin in pairs(morphToLoad:GetChildren()) do spawn(function () local root = bin:WaitForChild("RootPart") local relative = char:WaitForChild(bin.Name) for _,part in pairs(bin:GetChildren()) do if part ~= root and part:IsA("BasePart") then local dup = part:clone() dup.Anchored = false dup.CanCollide = false local w = Instance.new("Weld") w.Part0 = relative w.Part1 = dup w.C0 = root.CFrame:toObjectSpace(part.CFrame) w.Parent = relative dup.Parent = char end end end) end end end end end loadMorph("WeirdExampleMorph")
CloneTrooper1019
#159496988Monday, April 06, 2015 12:29 AM GMT

InsertSyllablesHere
#159497012Monday, April 06, 2015 12:29 AM GMT

gg clone we throw parties, you throw knives | @maxwellbarfiok
Silvahgrace
#159497083Monday, April 06, 2015 12:30 AM GMT

clone is god confermed m8, b4 u explore the forums, take this magic stuff (∩ ͡° ͜ʖ ͡°)⊃━☆゚. * ・ 。゚
SkySpell
#159497157Monday, April 06, 2015 12:31 AM GMT

Although I don't go on this subforum that much, this isn't a place to ask people to script stuff for you. This is a place to get some help for fixing scripts or just regular coding questions. Also hi Clone. "the tippiest of fedoras, the edgiest of edges, the soggiest of knees and the dankest of memes" ~SkySpell - 2050
eLunate
#159497400Monday, April 06, 2015 12:33 AM GMT

I have a couple of things I'm upset about Clone defines immutables every time the function is called Clone made a script for the guy and ruined the hostile spirit of the forum
axelvts
#159497466Monday, April 06, 2015 12:34 AM GMT

@Tan, No- I'm mad at ROBLOX. Sorry if it came off as rude toward you. @Clone: Thankyou so much! I'll look at it and see if there is anything I need to edit. @Everyone else: I can edit, splice, and read scripts- I'm just terrible at doing it from scratch.
CloneTrooper1019
#159497606Monday, April 06, 2015 12:36 AM GMT

@axelvt I didn't do the "CORE" Motor6D stuff, but I'm pretty sure you can just change it to create a Motor6D and parent it inside of the player's torso instead of the part its welding to.
eLunate
#159497627Monday, April 06, 2015 12:36 AM GMT

In other words you can't script Well that was easy
CloneTrooper1019
#159497762Monday, April 06, 2015 12:37 AM GMT

@eLunate I wrote the function to be understandable and functional regardless of how a game is done. He is perfectly free to modify it and move them outside of the function.
Winception
#159510117Monday, April 06, 2015 3:08 AM GMT

Here we see a wild CloneTrooper1019 in it's natural habitat. ~Win
BuxLord
#171930480Friday, August 21, 2015 2:35 AM GMT

How do you make a video intro on your games?
BuxLord
#171930952Friday, August 21, 2015 2:40 AM GMT

What does this do?

    of     2   
chevron_rightchevron_rightchevron_right