You can write your topic however you want, but you need to answer these questions:
- What do you want to achieve? Keep it simple and clear!
So im trying to make a module which will turn you into a morph when calling “require(0000)”.
- What is the issue? Include screenshots / videos if possible!
But for some reason when you require the module from a game you dont own(Example void script builder in this case where im trying to require it from). It kinda works. It transforms you and everythin. But it wont load the animations. Just the default Roblox animations?
Example 1(Requiring from my game)
Example 2(Requiring in void script builder)
- What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I found something that talked about its due to Roblox security. But i wanted to ask here anyways to be sure
Inside the module:
local module = {}
local M = script:WaitForChild("MORPH")
function module:TRANSFORM(NAME)
if game.Players:FindFirstChild(NAME) then
local PLAYER = game.Players:FindFirstChild(NAME)
local CL = M:Clone()
PLAYER.Character = CL
CL.Parent = game.Workspace
end
end
return module
Any help would be really helpful since ive been trying to solve this for 1 week now