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

Can I do Instance.new through a local script?

Asked by 4 years ago

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

01local shirt = Instance.new("Part")
02shirt.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
03shirt.Anchored = true
04shirt.CanCollide = false
05shirt.Size = Vector3.new(2.32, 2.32, 1.32)
06shirt.Transparency = 0.35
07shirt.Name = "Anti-Skid Shirt"
08shirt.TopSurface = "Smooth"
09shirt.RightSurface = "Smooth"
10shirt.LeftSurface = "Smooth"
11shirt.BottomSurface = "Smooth"
12 
13game:service'RunService'.Heartbeat:Connect(function()
14    shirt.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
15end)

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!

0
Lol Ziffixture 6913 — 4y
0
Remote Events jakeovi -1 — 4y

1 answer

Log in to vote
1
Answered by 4 years ago

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 
03local 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
08Players.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 
View all 51 lines...
0
I accept for the weld constraint! But I have to use local script. my friend can do it. But I can't ;-; WINDOWS10XPRO 438 — 4y
Ad

Answer this question