Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Whats wrong with my Model Cloning script?

Asked by
neoG457 315 Moderation Voter
10 years ago
01local Player = game.Players.LocalPlayer
02local Mouse = Player:GetMouse()
03 
04Mouse.KeyDown:connect(function(key)
05if key == "p" then
06 
07local RinkakuModel = game.ReplicatedStorage.WorkspaceRinkakuModel:Clone() --Assuming the model is now in ReplicatedStorage
08local primary_part = RinkakuModel.Primary -- Since this is used a lot, let's store it in a temporary variable
09RinkakuModel.PrimaryPart = primary_part
10 
11local w = Instance.new('Weld')
12w.Part0 = primary_part
13w.Part1 = Player.Character.Torso
14w.C0 = CFrame.new(0, 10, 0)
15w.Parent = primary_part
View all 37 lines...

This script should clone WorkspaceRinkakuModel into workspace and weld the clone to my torso but its not working the output isnt saying anything is wrong with it. Please help this script is in a local script in starterpack

0
In line 26, why are you returning weld? Take that part out. DigitalVeer 1473 — 10y

1 answer

Log in to vote
1
Answered by 10 years ago

I don't know if this is the error, but the part :

if key == "p" then

Should change to:

if key:lower() == "p" then

I've had this error in one of my scripts before. It might be the error.

0
Or you could use if key == "p" or "P" then yoshiegg6 176 — 10y
Ad

Answer this question