Can I do Instance.new through a local script?
I tried it, in a local script. But other players can't see it. here's the script btw
01 | local shirt = Instance.new( "Part" ) |
02 | shirt.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart |
03 | shirt.Anchored = true |
04 | shirt.CanCollide = false |
05 | shirt.Size = Vector 3. new( 2.32 , 2.32 , 1.32 ) |
06 | shirt.Transparency = 0.35 |
07 | shirt.Name = "Anti-Skid Shirt" |
08 | shirt.TopSurface = "Smooth" |
09 | shirt.RightSurface = "Smooth" |
10 | shirt.LeftSurface = "Smooth" |
11 | shirt.BottomSurface = "Smooth" |
12 |
13 | game:service 'RunService' .Heartbeat:Connect( function () |
14 | shirt.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame |
15 | end ) |
I even tried to set the parent to workspace, but other player still can't see it. If there's any way to do it. Please teach me how. I accept answers!
There's a difference between using LocalScript and Script. If you want other people see the new part created, you should make in from the server. You can use service Players and use the event called PlayerAdded for when a player joins and from there use the event CharacterAdded from the player object for when the character is added and it works if you want to do something every time the character loads. There's a example to help u understand
01 | --This needs to be done in a server script, not a localscript |
02 |
03 | local Players = game:GetService( "Players" ) --Here we get the service Players to use its events |
04 |
05 |
06 | --Here we connect the event for when a player joins. The function that we connected |
07 | --Receives one argument that we can call whatever we want, that argument corresponds to the player that joined |
08 | Players.PlayerAdded:Connect( function (Player) |
09 |
10 | --Next we do is connect the event CharacterAdded from the PlayerObject |
11 | --This events fires every time the player resets or dies. |
12 | --We connected it to a function that receives one argument, in this case the Character |
13 | Player.CharacterAdded:Connect( function (Character) |
14 | --Here we can Instance the part and do whatever we want with the character |
15 |