01 | local Player = game.Players.LocalPlayer |
02 | local Mouse = Player:GetMouse() |
03 |
04 | Mouse.KeyDown:connect( function (key) |
05 | if key = = "p" then |
06 |
07 | local RinkakuModel = game.ReplicatedStorage.WorkspaceRinkakuModel:Clone() --Assuming the model is now in ReplicatedStorage |
08 | local primary_part = RinkakuModel.Primary -- Since this is used a lot, let's store it in a temporary variable |
09 | RinkakuModel.PrimaryPart = primary_part |
10 |
11 | local w = Instance.new( 'Weld' ) |
12 | w.Part 0 = primary_part |
13 | w.Part 1 = Player.Character.Torso |
14 | w.C 0 = CFrame.new( 0 , 10 , 0 ) |
15 | w.Parent = primary_part |
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
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.