RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create me a script that allows an NPC to talk and give a mission to the player"
-- server script game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) local shirt = Instance.new("Shirt", character) shirt.ShirtTemplate = "rbxassetid://YourShirtIDHere" local pants = Instance.new("Pants", character) pants.PantsTemplate = "rbxassetid://YourPantsIDHere" end) end)